This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathazure-pipelines.yml
executable file
·66 lines (61 loc) · 1.81 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Azure Tester
trigger:
- master # Triggers when on master. Either pr or push
resources:
containers:
- container: wpilib2020
image: wpilib/roborio-cross-ubuntu:2020-18.04
- container: raspbian
image: wpilib/raspbian-cross-ubuntu:10-18.04
- container: bionic
image: wpilib/aarch64-cross-ubuntu:bionic-18.04
jobs:
- job: linux
pool:
vmImage: 'Ubuntu-latest'
container: bionic
steps:
- template: azure-init.yml
- script: git submodule update --init
- script: git submodule update --remote -f
- task: Gradle@2
inputs:
workingDirectory: ''
gradleWrapperFile: 'gradlew'
gradleOptions: '-Xmx4096m'
publishJUnitResults: false
testResultsFiles: '**/TEST-*.xml'
tasks: 'clean generateFramework build'
options: '-Pno-roborio -PazureBuild -Pforce -Ptoolchain-optional-roboRio'
- job: windows
pool:
vmImage: 'windows-latest'
steps:
- template: azure-init.yml
- script: git submodule update --init
- script: git submodule update --remote -f
- task: Gradle@2
inputs:
workingDirectory: ''
gradleWrapperFile: 'gradlew'
gradleOptions: '-Xmx4096m'
publishJUnitResults: false
testResultsFiles: '**/TEST-*.xml'
tasks: 'clean generateFramework build'
options: '-Pno-roborio -PazureBuild -Pforce -Ptoolchain-optional-roboRio'
- job: mac
pool:
vmImage: 'macOS-latest'
steps:
- template: azure-init.yml
- script: git submodule update --init
- script: git submodule update --remote -f
- task: Gradle@2
inputs:
workingDirectory: ''
gradleWrapperFile: 'gradlew'
gradleOptions: '-Xmx4096m'
publishJUnitResults: false
testResultsFiles: '**/TEST-*.xml'
tasks: 'clean generateFramework build'
options: '-Pno-roborio -PazureBuild -Pforce -Ptoolchain-optional-roboRio'