From 1de923a204590b43c393595f2d6dbf224e69e6c4 Mon Sep 17 00:00:00 2001 From: nipun1999 <31271538+nipun1999@users.noreply.github.com> Date: Sat, 3 Aug 2019 01:37:49 +0530 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..4b23634 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,20 @@ +# Android +# Build your Android project with Gradle. +# Add steps that test, sign, and distribute the APK, save build artifacts, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/android + +trigger: +- master + +pool: + vmImage: 'macos-latest' + +steps: +- task: Gradle@2 + inputs: + workingDirectory: '' + gradleWrapperFile: 'gradlew' + gradleOptions: '-Xmx3072m' + publishJUnitResults: false + testResultsFiles: '**/TEST-*.xml' + tasks: 'assembleDebug'