Skip to content

Commit 48977cf

Browse files
authored
Merge pull request #195 from Enigmatis/azure-pipelines
Set up CI with Azure Pipelines
2 parents 3b263fe + 4f02ab1 commit 48977cf

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

azure-pipelines.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Gradle
2+
# Build your Java project 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/azure/devops/pipelines/languages/java
5+
6+
pool:
7+
vmImage: 'Ubuntu 16.04'
8+
9+
steps:
10+
- task: Gradle@2
11+
inputs:
12+
workingDirectory: ''
13+
gradleWrapperFile: 'gradlew'
14+
gradleOptions: '-Xmx3072m'
15+
javaHomeOption: 'JDKVersion'
16+
jdkVersionOption: '1.8'
17+
jdkArchitectureOption: 'x64'
18+
publishJUnitResults: true
19+
testResultsFiles: '**/TEST-*.xml'
20+
tasks: 'build'

0 commit comments

Comments
 (0)