diff options
-rw-r--r-- | azure-pipelines.yml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ebe8eef..b507716 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -35,14 +35,20 @@ jobs: displayName: Install Qt and libelf using brew - bash: echo 'export PATH="/usr/local/opt/qt/bin:$PATH"' >> ~/.bash_profile displayName: Add Qt to the path - - bash: qmake --version + - task: Bash@3 displayName: Print qmake version - noProfile: false - noRc: false - - bash: ./build-macos.sh + inputs: + targetType: inline + script: qmake --version + noProfile: false + noRc: false + - task: Bash@3 displayName: Run build script - noProfile: false - noRc: false + inputs: + targetType: file + filePath: ./build-macos.sh + noProfile: false + noRc: false # https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/utility/publish-pipeline-artifact?view=azure-devops - task: PublishPipelineArtifact@0 inputs: |