forked from sonic-net/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI] Setup dummy azure pipeline (sonic-net#198)
Signed-off-by: Shilong Liu <shilongliu@microsoft.com>
- Loading branch information
1 parent
183162f
commit 9b83459
Showing
1 changed file
with
39 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Starter pipeline | ||
# Start with a minimal pipeline that you can customize to build and deploy your code. | ||
# Add steps that build, run tests, deploy, and more: | ||
# https://aka.ms/yaml | ||
|
||
pool: | ||
vmImage: sonicbld | ||
|
||
trigger: | ||
branches: | ||
include: | ||
- master | ||
|
||
pr: | ||
branches: | ||
include: | ||
- master | ||
|
||
stages: | ||
- stage: Build | ||
jobs: | ||
- job: | ||
displayName: "build" | ||
timeoutInMinutes: 60 | ||
steps: | ||
- checkout: self | ||
clean: true | ||
submodules: recursive | ||
displayName: 'Checkout code' | ||
- script: | | ||
echo Hello | ||
# the following is copied from jenkins | ||
# set -ex | ||
# ./scripts/common/python-asyncsnmp-build/build.sh | ||
# ./scripts/common/python-asyncsnmp-build/test.sh | ||
- publish: $(System.DefaultWorkingDirectory)/target/python-wheels/ | ||
artifact: sonic-snmpagent | ||
displayName: "Archive artifacts" | ||
|