-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding an azure-pipelines.yml file. (#101)
- Loading branch information
1 parent
19a14a7
commit 9240d41
Showing
2 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
trigger: | ||
- master | ||
|
||
pr: | ||
- master | ||
|
||
jobs: | ||
- job: windows_debug_x86 | ||
pool: | ||
name: Hosted | ||
demands: Cmd | ||
steps: | ||
- task: BatchScript@1 | ||
displayName: 'Run scripts/cibuild.cmd' | ||
inputs: | ||
filename: scripts/cibuild.cmd | ||
arguments: '-configuration Debug -architecture x86' | ||
|
||
- job: windows_release_x86 | ||
pool: | ||
name: Hosted | ||
demands: Cmd | ||
steps: | ||
- task: BatchScript@1 | ||
displayName: 'Run scripts/cibuild.cmd' | ||
inputs: | ||
filename: scripts/cibuild.cmd | ||
arguments: '-configuration Release -architecture x86' | ||
|
||
- job: windows_debug_x64 | ||
pool: | ||
name: Hosted | ||
demands: Cmd | ||
steps: | ||
- task: BatchScript@1 | ||
displayName: 'Run scripts/cibuild.cmd' | ||
inputs: | ||
filename: scripts/cibuild.cmd | ||
arguments: '-configuration Debug -architecture x64' | ||
|
||
- job: windows_release_x64 | ||
pool: | ||
name: Hosted | ||
demands: Cmd | ||
steps: | ||
- task: BatchScript@1 | ||
displayName: 'Run scripts/cibuild.cmd' | ||
inputs: | ||
filename: scripts/cibuild.cmd | ||
arguments: '-configuration Release -architecture x64' | ||
|
||
- job: ubuntu_1604_debug_x64 | ||
pool: | ||
name: Hosted Ubuntu 1604 | ||
steps: | ||
- task: Bash@3 | ||
displayName: 'Run scripts/cibuild.sh' | ||
inputs: | ||
targetType: filePath | ||
filePath: ./scripts/cibuild.sh | ||
arguments: '--configuration Debug --architecture x64' | ||
|
||
- job: ubuntu_1604_release_x64 | ||
pool: | ||
name: Hosted Ubuntu 1604 | ||
steps: | ||
- task: Bash@3 | ||
displayName: 'Run scripts/cibuild.sh' | ||
inputs: | ||
targetType: filePath | ||
filePath: ./scripts/cibuild.sh | ||
arguments: '--configuration Release --architecture x64' |