Skip to content

Commit

Permalink
add initial azure devops ci integration
Browse files Browse the repository at this point in the history
  • Loading branch information
ratanparai committed Apr 21, 2019
1 parent 2c1d282 commit a9f2b4e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,8 @@
/build
/captures
.externalNativeBuild
app/.classpath
.project
.settings/org.eclipse.buildship.core.prefs
app/.project
app/.settings/org.eclipse.buildship.core.prefs
13 changes: 13 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# https://docs.microsoft.com/azure/devops/pipelines/languages/android
pool:
vmImage: 'macOS-10.13'

steps:
- task: Gradle@2
inputs:
workingDirectory: ''
gradleWrapperFile: 'gradlew'
gradleOptions: '-Xmx3072m'
publishJUnitResults: false
testResultsFiles: '**/TEST-*.xml'
tasks: 'assembleDebug'

0 comments on commit a9f2b4e

Please sign in to comment.