Skip to content

Commit

Permalink
[ci]: Set up CI with Azure Pipelines (#102)
Browse files Browse the repository at this point in the history
[skip ci]

Signed-off-by: Shilong Liu <shilongliu@microsoft.com>
  • Loading branch information
liushilongbuaa authored Mar 10, 2021
1 parent fa760c4 commit 9d019b0
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions azure-pipelines.yml
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: 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
# python2 setup.py bdist_wheel
# python3 setup.py bdist_wheel
# mkdir -p target/python-wheels/
# cp dist/swsssdk-2.0.1-{py2,py3}-none-any.whl target/python-wheels/
- publish: $(System.DefaultWorkingDirectory)/target/python-wheels/
artifact: sonic-py-swsssdk
displayName: "Archive artifacts"

0 comments on commit 9d019b0

Please sign in to comment.