Skip to content

Commit c5eba44

Browse files
committed
Adding database build task
1 parent a4fa709 commit c5eba44

1 file changed

Lines changed: 5 additions & 8 deletions

File tree

templates/t-extend-database-build.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,24 +49,21 @@ stages:
4949
pool:
5050
vmImage: ubuntu-latest
5151
jobs:
52-
- job: AddToPath
53-
displayName: Add binaries to Path
52+
- job: CreateDatabase
53+
displayName: Create Database
5454
steps:
55-
- checkout: none
55+
- checkout: self
5656
- ${{ each addpath in parameters.addToPaths }}:
5757
- bash: |
5858
echo "Setting variable ${{addpath.path}}"
59-
echo "##vso[task.setvariable variable=PATH]${PATH}:${{addpath.path}}"
59+
echo "##vso[task.prependpath]${{addpath.path}}"
6060
displayName: 'Add To path ${{addpath.path}}'
6161
62-
- job: CreateDatabase
63-
displayName: Create Database
64-
steps:
65-
- checkout: self
6662
- bash: |
6763
git clone --depth=1 --branch=${{ parameters.utplsqlVersion }} https://github.com/utPLSQL/utPLSQL.git ${{ parameters.utplsqlDir}}
6864
chmod -R go+w ${{ parameters.utplsqlDir}}
6965
displayName: 'Download utPLSQL'
66+
7067
- task: Docker@2
7168
displayName: Docker Login
7269
inputs:

0 commit comments

Comments
 (0)