This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BUILD: added build setup files. (#5)
- Loading branch information
1 parent
442a655
commit 47d4071
Showing
3 changed files
with
52 additions
and
5 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
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,37 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
|
||
# Pull request against these branches will trigger this build | ||
pr: | ||
- master | ||
- staging | ||
|
||
# Any commit to this branch will trigger the build. | ||
trigger: | ||
- master | ||
- staging | ||
|
||
jobs: | ||
|
||
- job: unit test job | ||
timeoutInMinutes: 10 # how long to run the job before automatically cancelling | ||
pool: | ||
name: deepseismicagentpool | ||
|
||
steps: | ||
- bash: | | ||
echo "First step" | ||
echo "Replace this with command" | ||
echo "Dummy unit test job passed" | ||
displayName: Unit Test Job | ||
- job: integration test job | ||
timeoutInMinutes: 10 # how long to run the job before automatically cancelling | ||
pool: | ||
name: deepseismicagentpool | ||
|
||
steps: | ||
- bash: | | ||
echo "First step" | ||
echo "Dummy integration test job passed" | ||
displayName: Integration Test Job |