From 04a69eac1226bf1c40fdd03f731223b5ca9ca47d Mon Sep 17 00:00:00 2001 From: Gary Tierney Date: Tue, 16 Jul 2019 16:55:09 +0100 Subject: [PATCH] Add Azure DevOps pipeline configuration --- azure-pipelines.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..c524f1d5 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,16 @@ +pool: + vmImage: 'ubuntu-latest' + +steps: + - task: Gradle@2 + displayName: "Gradle: build" + inputs: + workingDirectory: '' + gradleWrapperFile: 'gradlew' + gradleOptions: '-Xmx3072m' + javaHomeOption: 'JDKVersion' + jdkVersionOption: '1.8' + jdkArchitectureOption: 'x64' + publishJUnitResults: false + testResultsFiles: '**/TEST-*.xml' + tasks: 'build'