Browse Source

Merge branch 'migrate-github-ci' into 'develop'

Migrate github ci

See merge request funkwhale/funkwhale-android!6
housekeeping/remove-warnings
Georg Krause 3 years ago
parent
commit
dc607d64a6
  1. 22
      .gitlab-ci.yml

22
.gitlab-ci.yml

@ -0,0 +1,22 @@ @@ -0,0 +1,22 @@
image: jangrewe/gitlab-ci-android
stages:
- build
before_script:
- export GRADLE_USER_HOME=$(pwd)/.gradle
- chmod +x ./gradlew
cache:
key: ${CI_PROJECT_ID}
paths:
- .gradle/
build:
stage: build
script:
- mkdir -p .android && touch .android/repositories.cfg
- ./gradlew assembleDebug
artifacts:
paths:
- app/build/outputs/apk/debug/app-debug.apk
Loading…
Cancel
Save