-
Notifications
You must be signed in to change notification settings - Fork 2
/
azure-pipelines.yml
117 lines (107 loc) · 3.59 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Gradle
# Build your Java projects and run tests with Gradle using a Gradle wrapper script.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/vsts/pipelines/languages/java
resources:
containers:
- container: wpilib2020
image: wpilib/roborio-cross-ubuntu:2020-18.04
jobs:
- job: Linux_Arm
pool:
vmImage: "Ubuntu 16.04"
container: wpilib2020
steps:
- task: Gradle@2
inputs:
workingDirectory: ""
gradleWrapperFile: "gradlew"
gradleOptions: "-Xmx3072m"
publishJUnitResults: false
testResultsFiles: "**/TEST-*.xml"
tasks: "build"
options: "-PonlyAthena"
# checkStyleRunAnalysis: true
# pmdRunAnalysis: true
- job: Linux
pool:
vmImage: "Ubuntu 16.04"
container: wpilib2020
steps:
- task: Gradle@2
inputs:
workingDirectory: ""
gradleWrapperFile: "gradlew"
gradleOptions: "-Xmx3072m"
publishJUnitResults: true
testResultsFiles: "**/TEST-*.xml"
tasks: "build"
options: "-PskipAthena"
# checkStyleRunAnalysis: true
# pmdRunAnalysis: true
# - job: Styleguide
# pool:
# vmImage: 'Ubuntu 16.04'
# steps:
# - script: |
# sudo apt-get update -y
# sudo apt-get install clang-format-5.0 python3-setuptools -y
# sudo pip3 install --upgrade pip
# sudo pip3 install wpiformat
# git checkout -b master
# displayName: 'Install Dependencies'
# - script: |
# wpiformat -y 2020 -clang 5.0
# displayName: 'Run WPIFormat'
# failOnStderr: true
# - script: |
# git --no-pager diff --exit-code HEAD # Ensure formatter made no changes
# displayName: 'Check WPIFormat Output'
# failOnStderr: true
- job: Windows_64_Bit
pool:
vmImage: "vs2017-win2016"
steps:
- powershell: |
mkdir build
$ProgressPreference = 'SilentlyContinue'
wget "https://download.java.net/java/ga/jdk11/openjdk-11_windows-x64_bin.zip" -O "build\jdk.zip"
displayName: "Download JDK"
- task: JavaToolInstaller@0
inputs:
jdkSourceOption: localDirectory
jdkFile: "build/jdk.zip"
jdkDestinationDirectory: "build/jdkinst"
jdkArchitectureOption: x64
- task: Gradle@2
inputs:
workingDirectory: ""
gradleWrapperFile: "gradlew"
gradleOptions: "-Xmx3072m"
publishJUnitResults: true
testResultsFiles: "**/TEST-*.xml"
tasks: "build"
# checkStyleRunAnalysis: true
# pmdRunAnalysis: true
- job: Mac
pool:
vmImage: "macOS-latest"
steps:
- script: |
mkdir build
wget "https://download.java.net/java/ga/jdk11/openjdk-11_osx-x64_bin.tar.gz" -O "build/jdk.tar.gz"
sudo tar xvzf build/jdk.tar.gz -C /Library/Java/JavaVirtualMachines/
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-11.jdk/Contents/Home/
displayName: "Setup JDK"
- task: Gradle@2
inputs:
workingDirectory: ""
gradleWrapperFile: "gradlew"
gradleOptions: "-Xmx3072m"
javaHomeOption: "path"
jdkDirectory: "/Library/Java/JavaVirtualMachines/jdk-11.jdk/Contents/Home/"
publishJUnitResults: true
testResultsFiles: "**/TEST-*.xml"
tasks: "build"
# checkStyleRunAnalysis: true
# pmdRunAnalysis: true