From 5c3945b431dbcdfc396d82ea9998194727cf06a6 Mon Sep 17 00:00:00 2001 From: Martin Endler Date: Sun, 12 May 2019 01:39:35 +0200 Subject: Fix CI build definition --- azure-pipelines.yml | 18 ++++++++++++------ 1 file 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: -- cgit v1.2.3