Set up CI with Azure Pipelines (this is a test oh GOD)

[skip ci]
This commit is contained in:
Ellpeck 2020-02-07 02:21:58 +01:00
parent 3319a9673a
commit 1cb333e2d2

23
azure-pipelines.yml Normal file
View file

@ -0,0 +1,23 @@
# 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
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Gradle@2
inputs:
workingDirectory: ''
gradleWrapperFile: 'gradlew'
gradleOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.8'
jdkArchitectureOption: 'x64'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
tasks: 'build'