diff options
Diffstat (limited to 'azure-pipelines/bash.yml')
-rw-r--r-- | azure-pipelines/bash.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines/bash.yml b/azure-pipelines/bash.yml index 33a442b57..d776a3649 100644 --- a/azure-pipelines/bash.yml +++ b/azure-pipelines/bash.yml @@ -1,10 +1,10 @@ # These are the steps used for building on machines with bash. steps: -- bash: . '$(Build.SourcesDirectory)/azure-pipelines/build.sh' +- bash: . '$(Build.SourcesDirectory)/ci/build.sh' displayName: Build workingDirectory: '$(Build.BinariesDirectory)' env: ${{ parameters.environmentVariables }} -- bash: . '$(Build.SourcesDirectory)/azure-pipelines/test.sh' +- bash: . '$(Build.SourcesDirectory)/ci/test.sh' displayName: Test workingDirectory: '$(Build.BinariesDirectory)' env: ${{ parameters.environmentVariables }} |