-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
37 lines (33 loc) · 828 Bytes
/
azure-pipelines.yml
File metadata and controls
37 lines (33 loc) · 828 Bytes
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
# 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
trigger:
- master
- dev
pool:
vmImage: 'ubuntu-latest'
#strategy:
# matrix:
## jdk11:
## jdk_version: "1.11"
# jdk17:
# jdk_version: "1.17"
# maxParallel: 2
steps:
- checkout: self
submodules: true
- task: Gradle@3
inputs:
workingDirectory: ''
gradleWrapperFile: 'gradlew'
gradleOptions: '-Xmx2048m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: "1.17"
jdkArchitectureOption: 'x64'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
tasks:
- ':kotlinStoreYarnLock'
- 'build'
options: '-PexcludeSchema'