aboutsummaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorMartin Endler <pokusew@seznam.cz>2019-05-12 01:48:14 +0200
committerMartin Endler <pokusew@seznam.cz>2019-05-12 01:48:14 +0200
commit1b76da07cabe163a798fa94a13b0a5325ef20e86 (patch)
treecb0a686743d25eaf5b4840e7509c1e4658f572e4 /azure-pipelines.yml
parent5c3945b431dbcdfc396d82ea9998194727cf06a6 (diff)
downloadqtmips-1b76da07cabe163a798fa94a13b0a5325ef20e86.tar.gz
qtmips-1b76da07cabe163a798fa94a13b0a5325ef20e86.tar.bz2
qtmips-1b76da07cabe163a798fa94a13b0a5325ef20e86.zip
Fix CI build
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml22
1 files changed, 8 insertions, 14 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index b507716..7d5c558 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -33,22 +33,16 @@ jobs:
# docs: https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/utility/bash?view=azure-devops
- bash: brew install qt libelf
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
- - task: Bash@3
+ - bash: echo $PATH
+ displayName: Echo $PATH
+ - bash: echo "##vso[task.setvariable variable=PATH;]/usr/local/opt/qt/bin:$PATH"
+ displayName: Add Qt to the PATH
+ - bash: echo $PATH
+ displayName: Echo $PATH
+ - bash: qmake --version
displayName: Print qmake version
- inputs:
- targetType: inline
- script: qmake --version
- noProfile: false
- noRc: false
- - task: Bash@3
+ - bash: ./build-macos.sh
displayName: Run build script
- 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: