Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support skip ci in azure pipelines #677

Draft
wants to merge 19 commits into
base: devel
Choose a base branch
from
Prev Previous commit
Next Next commit
[skip ci] gook6
timotheecour committed Mar 29, 2021
commit 6d7bfb95c71c04da9df251cd52018d679b19096e
7 changes: 3 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -55,7 +55,6 @@ jobs:
clean: all

steps:
# condition: and(succeeded(), ne(variables['build.sourceBranchName'], 'DoUAT'))
# condition: not(contains(variables['Build.SourceVersionMessage'], variables['SKIP_CI_FILTER']))
- bash: |
echo_run () {
@@ -79,7 +78,7 @@ jobs:
- bash: git config --global core.autocrlf false
displayName: 'Disable auto conversion to CRLF by git (Windows-only)'
condition: eq(succeeded(), variables['Agent.OS'], 'Windows_NT')
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))

- checkout: self
fetchDepth: 1
@@ -144,7 +143,7 @@ jobs:
- bash: brew install boehmgc make sfml
displayName: 'Install dependencies (OSX)'
condition: eq(succeeded(), variables['Agent.OS'], 'Darwin')
condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'))

- bash: |
set -e
@@ -157,7 +156,7 @@ jobs:
echo_run echo '##vso[task.prependpath]$(System.DefaultWorkingDirectory)/dist/mingw64/bin'
displayName: 'Install dependencies (Windows)'
condition: eq(succeeded(), variables['Agent.OS'], 'Windows_NT')
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))
- bash: echo '##vso[task.prependpath]$(System.DefaultWorkingDirectory)/bin'
displayName: 'Add build binaries to PATH'