From 1ea83a23bd8be9fc08aaf714d0fe9dc677d5772f Mon Sep 17 00:00:00 2001 From: l198881 <82917144+l198881@users.noreply.github.com> Date: Wed, 21 Apr 2021 08:44:09 -0300 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines-2.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 azure-pipelines-2.yml diff --git a/azure-pipelines-2.yml b/azure-pipelines-2.yml new file mode 100644 index 0000000..97868cc --- /dev/null +++ b/azure-pipelines-2.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: +- main + +pool: + vmImage: 'macos-latest' + +steps: +- task: Gradle@2 + inputs: + workingDirectory: '' + gradleWrapperFile: 'gradlew' + gradleOptions: '-Xmx3072m' + publishJUnitResults: false + testResultsFiles: '**/TEST-*.xml' + tasks: 'assembleDebug'