Skip to content

Commit 5f383bf

Browse files
Set up CI with Azure Pipelines (Flank#308)
* Set up CI with Azure Pipelines * Update azure-pipelines.yml * Update azure-pipelines.yml
1 parent de9f3f9 commit 5f383bf

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

azure-pipelines.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Gradle
2+
# Build your Java projects and run tests with Gradle using a Gradle wrapper script.
3+
# Add steps that analyze code, save build artifacts, deploy, and more:
4+
# https://docs.microsoft.com/vsts/pipelines/languages/java
5+
# https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/build/gradle?view=vsts
6+
7+
pool:
8+
vmImage: 'Ubuntu 16.04'
9+
10+
steps:
11+
- task: Gradle@2
12+
inputs:
13+
workingDirectory: 'test_runner'
14+
gradleWrapperFile: './test_runner/gradlew'
15+
gradleOptions: '-Xmx3072m'
16+
javaHomeOption: 'JDKVersion'
17+
jdkVersionOption: '1.8'
18+
jdkArchitectureOption: 'x64'
19+
publishJUnitResults: false
20+
testResultsFiles: '**/TEST-*.xml'
21+
tasks: 'build'

0 commit comments

Comments
 (0)