Skip to content

Commit

Permalink
CI:azure: not run build test when doc/src/examples
Browse files Browse the repository at this point in the history
Signed-off-by: Hiroshi Miura <[email protected]>
  • Loading branch information
miurahr committed May 31, 2020
1 parent cab78ff commit fe7912b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ steps:
displayName: Detect toolchain for Windows and update PATH
- script: |
sudo apt-get install libgl1-mesa-dev
condition: and(eq( variables['TARGET'], 'desktop'), eq(variables['Agent.OS'], 'Linux'))
condition: and(eq( variables['TARGET'], 'desktop'), eq(variables['Agent.OS'], 'Linux'), eq(variables['TOOL_NAME'], ''))
displayName: install test dependency for Linux
# no modules
Expand Down Expand Up @@ -204,7 +204,7 @@ steps:
export PATH=$(Build.BinariesDirectory)/Qt/$(QT_VERSION)/$(ARCHDIR)/bin:$PATH
qmake $(Build.BinariesDirectory)/tests/helloworld
make
condition: and(eq( variables['TARGET'], 'desktop' ), ne( variables['ARCH'], 'wasm_32' ), or(eq(variables['Agent.OS'], 'Linux'), eq(variables['Agent.OS'], 'Darwin')), eq(variables['MODULE'], ''))
condition: and(eq( variables['TARGET'], 'desktop' ), ne( variables['ARCH'], 'wasm_32' ), or(eq(variables['Agent.OS'], 'Linux'), eq(variables['Agent.OS'], 'Darwin')), eq(variables['MODULE'], ''), eq(variables['TOOL_NAME'], ''))
displayName: Build test with qmake for Linux and macOS w/o extra module
# modules
# TODO: current PSCX release does not support VSVER 2019
Expand All @@ -226,7 +226,7 @@ steps:
export PATH=$(Build.BinariesDirectory)/Qt/$(QT_VERSION)/$(ARCHDIR)/bin:$PATH
qmake $(Build.BinariesDirectory)/tests/redditclient
make
condition: and(eq( variables['TARGET'], 'desktop' ), or(eq(variables['Agent.OS'], 'Linux'), eq(variables['Agent.OS'], 'Darwin')), ne(variables['MODULE'], ''))
condition: and(eq( variables['TARGET'], 'desktop'), or(eq(variables['Agent.OS'], 'Linux'), eq(variables['Agent.OS'], 'Darwin')), ne(variables['MODULE'], ''))
displayName: Build test with qmake for Linux and macOS with extra module
##----------------------------------------------------
Expand Down

0 comments on commit fe7912b

Please sign in to comment.