This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathazure-pipelines.yml
223 lines (197 loc) · 7.46 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# Gradle
# Build your Java project 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/azure/devops/pipelines/languages/java
resources:
containers:
- container: wpilib2020
image: wpilib/roborio-cross-ubuntu:2020-18.04
- container: ubuntu18
image: ubuntu:18.04
options: "--name ci-container -v /usr/bin/docker:/tmp/docker:ro"
stages:
- stage: Build
jobs:
# - job: Styleguide
# pool:
# vmImage: 'Ubuntu 16.04'
# container: ubuntu18
# steps:
# - script: |
# /tmp/docker exec -t -u 0 ci-container \
# sh -c "apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::="--force-confold" -y install sudo"
# displayName: Set up sudo
# - script: |
# sudo apt-get update -y
# sudo apt-get install clang-format-6.0 python3-setuptools python3-pip git -y
# sudo pip3 install wpiformat
# git checkout -b master
# displayName: 'Install Dependencies'
# - script: |
# #!/bin/sh -x
# set -x #echo on
# wpiformat -clang 6.0
# displayName: 'Run wpiformat'
# - script: |
# # Ensure formatter made no changes
# git --no-pager diff --exit-code HEAD
# displayName: 'Check wpiformat Output'
- 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 publish -x :snobot_sim_gui:test'
options: '-PciBuild'
# checkStyleRunAnalysis: true
# pmdRunAnalysis: true
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: maven repo'
inputs:
PathtoPublish: 'build/maven_repo'
ArtifactName: 'LinuxMaven'
- job: Windows_64_Bit
pool:
vmImage: 'windows-2019'
steps:
- task: Gradle@2
inputs:
workingDirectory: ''
gradleWrapperFile: 'gradlew'
gradleOptions: '-Xmx3072m'
jdkVersionOption: '1.11'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
tasks: 'build publish'
options: '-PciBuild -Dhttp.socketTimeout=60000 -Dhttp.connectionTimeout=60000'
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: maven repo'
inputs:
PathtoPublish: 'build/maven_repo'
ArtifactName: 'Win64Maven'
- job: Windows_32_Bit
pool:
vmImage: 'vs2017-win2016'
steps:
- powershell: |
mkdir build
$ProgressPreference = 'SilentlyContinue'
wget "https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.4%2B11/OpenJDK11U-jdk_x86-32_windows_hotspot_11.0.4_11.zip" -O "build\jdk.zip"
displayName: 'Download JDK'
- task: JavaToolInstaller@0
inputs:
versionSpec: '11'
jdkSourceOption: localDirectory
jdkFile: 'build/jdk.zip'
jdkDestinationDirectory: 'build/jdkinst'
jdkArchitectureOption: x86
- task: Gradle@2
inputs:
workingDirectory: ''
gradleWrapperFile: 'gradlew'
gradleOptions: '-Xmx1024m'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
tasks: 'build publish'
options: '-PciBuild -Dhttp.socketTimeout=60000 -Dhttp.connectionTimeout=60000'
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: maven repo'
inputs:
PathtoPublish: 'build/maven_repo'
ArtifactName: 'Win32Maven'
- job: Mac
pool:
vmImage: 'macOS-10.14'
steps:
- script: |
mkdir build
export JAVA_HOME=`/usr/libexec/java_home -v 11`
displayName: 'Setup JDK'
- task: Gradle@2
inputs:
workingDirectory: ''
gradleWrapperFile: 'gradlew'
gradleOptions: '-Xmx3072m'
jdkVersionOption: '1.11'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
tasks: 'build publish'
options: '-PciBuild -Dhttp.socketTimeout=60000 -Dhttp.connectionTimeout=60000'
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: maven repo'
inputs:
PathtoPublish: 'build/maven_repo'
ArtifactName: 'OSXMaven'
- job: PrepareMaven
pool:
vmImage: 'ubuntu-16.04'
steps:
- task: DownloadBuildArtifacts@0
displayName: 'Download Linux Artifacts'
inputs:
artifactName: 'LinuxMaven'
downloadPath: $(System.DefaultWorkingDirectory)/linux
- task: DownloadBuildArtifacts@0
displayName: 'Download Windows 32 Artifacts'
inputs:
artifactName: 'Win32Maven'
downloadPath: $(System.DefaultWorkingDirectory)/win32
- task: DownloadBuildArtifacts@0
displayName: 'Download Windows 64 Artifacts'
inputs:
artifactName: 'Win64Maven'
downloadPath: $(System.DefaultWorkingDirectory)/win64
- task: DownloadBuildArtifacts@0
displayName: 'Download Build Artifacts'
inputs:
artifactName: 'OSXMaven'
downloadPath: $(System.DefaultWorkingDirectory)/mac
- powershell: |
Copy-Item $(System.DefaultWorkingDirectory)/win32/Win32Maven/com $(System.DefaultWorkingDirectory)/output/com -recurse -force -verbose
Copy-Item $(System.DefaultWorkingDirectory)/win64/Win64Maven/* $(System.DefaultWorkingDirectory)/output -recurse -force -verbose
Copy-Item $(System.DefaultWorkingDirectory)/mac/OSXMaven/* $(System.DefaultWorkingDirectory)/output -recurse -force -verbose
Copy-Item $(System.DefaultWorkingDirectory)/linux/LinuxMaven/* $(System.DefaultWorkingDirectory)/output -recurse -force -verbose
#- task: PythonScript@0
# displayName: 'Create Combined Native Jar'
# inputs:
# scriptPath: ci_tools/create_all.py
# arguments: "--start_dir=$(System.DefaultWorkingDirectory)/output"
- task: PublishBuildArtifacts@1
displayName: 'Publish Combined Artifacts'
inputs:
PathtoPublish: $(System.DefaultWorkingDirectory)/output
ArtifactName: 'SnobotSimFullMaven'
dependsOn: [ Windows_64_Bit, Windows_32_Bit, Mac, Linux ]
condition: succeeded()
#- stage: Release
# jobs:
# - job: Test
# pool:
# vmImage: 'Ubuntu 16.04'
#
# steps:
# - task: DownloadBuildArtifacts@0
# displayName: 'Download Build Artifacts'
# inputs:
# artifactName: 'SnobotSimFullMaven'
# downloadPath: $(System.DefaultWorkingDirectory)
# - task: ArchiveFiles@2
# inputs:
# rootFolderOrFile: '$(System.DefaultWorkingDirectory)/SnobotSimFullMaven/'
# includeRootFolder: false
# archiveType: 'zip'
# archiveFile: '$(System.DefaultWorkingDirectory)/FullMaven.zip'
# replaceExistingArchive: true*
# - task: GitHubRelease@0
# displayName: 'Create Release'
# inputs:
# gitHubConnection: 'SnobotSimConnection'
# repositoryName: snobotsim/SnobotSim
# assets: '$(System.DefaultWorkingDirectory)/FullMaven.zip'