From 4377c7ffe633fb5e97ce7715204a83eced5819a3 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Sat, 22 Dec 2018 23:39:44 -0800 Subject: [PATCH] Add azure pipeline --- azure-pipelines.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..f71fa43 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,29 @@ +resources: + containers: + - container: pi-gen + image: wpilib/pi-gen:latest + +jobs: + - job: 'Main' + pool: + vmImage: 'Ubuntu 16.04' + + container: pi-gen + + steps: + - checkout: self + submodules: true + - script: | + cd deps && ./01-download.sh && ./02-extract.sh && ./03-build.sh && ./04-copy.sh + displayName: 'Build Image Dependencies' + - script: | + dpkg-reconfigure qemu-user-static + ./build.sh + displayName: 'Build Image' + - task: CopyFiles@2 + inputs: + contents: 'deploy/*.zip' + targetFolder: $(Build.ArtifactStagingDirectory) + - task: PublishBuildArtifacts@1 + inputs: + artifactName: 'FRCVisionImage'