134 lines
4.1 KiB
YAML
134 lines
4.1 KiB
YAML
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
|
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
|
# This specific template is located at:
|
|
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Android-Fastlane.gitlab-ci.yml
|
|
|
|
# Read more about how to use this script on this blog post https://about.gitlab.com/2019/01/28/android-publishing-with-gitlab-and-fastlane/
|
|
# If you are looking for a simpler template that does not publish, see the Android template.
|
|
# You will also need to configure your build.gradle, Dockerfile, and fastlane configuration to make this work.
|
|
|
|
# The following environment variables also need to be defined via the CI/CD settings:
|
|
#
|
|
# - $signing_jks_file_hex: A hex-encoded Java keystore file containing your signing keys.
|
|
# To encode this file, use `xxd -p <your-keystore-file>.jks` and save the output as `$signing_jks_file_hex`
|
|
# - $google_play_service_account_api_key_json: Your Google Play service account credentials - https://docs.fastlane.tools/getting-started/android/setup/#collect-your-google-credentials
|
|
|
|
stages:
|
|
- environment
|
|
- build
|
|
- test
|
|
- deploy
|
|
- internal
|
|
- alpha
|
|
- beta
|
|
- production
|
|
|
|
|
|
.updateContainerJob:
|
|
image: docker:stable
|
|
stage: environment
|
|
services:
|
|
- docker:dind
|
|
script:
|
|
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
|
|
- docker pull --quiet $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG || true
|
|
- docker build --cache-from $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG -t $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG .
|
|
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
|
|
|
|
updateContainer:
|
|
extends: .updateContainerJob
|
|
only:
|
|
changes:
|
|
- Dockerfile
|
|
|
|
ensureContainer:
|
|
extends: .updateContainerJob
|
|
allow_failure: true
|
|
before_script:
|
|
- "mkdir -p ~/.docker && echo '{\"experimental\": \"enabled\"}' > ~/.docker/config.json"
|
|
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
|
|
- |
|
|
if docker manifest inspect $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG > /dev/null; then
|
|
echo 'Skipping job since there is already an image with this tag'
|
|
exit 0
|
|
fi
|
|
|
|
.build_job:
|
|
image: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
|
|
stage: build
|
|
before_script:
|
|
# We store this binary file in a project variable as hex with this command: `xxd -p android-app.jks`
|
|
# Then we convert the hex back to a binary file
|
|
- echo "$signing_jks_file_hex" | xxd -r -p - > android-signing-keystore.jks
|
|
- export VERSION_CODE="$CI_PIPELINE_IID" && echo "$VERSION_CODE"
|
|
- export VERSION_SHA="${CI_COMMIT_SHA:0:8}" && echo "$VERSION_SHA"
|
|
after_script:
|
|
- rm -f android-signing-keystore.jks || true
|
|
artifacts:
|
|
paths:
|
|
- app/build/outputs
|
|
|
|
buildDebug:
|
|
extends: .build_job
|
|
script:
|
|
- bundle exec fastlane buildDebug
|
|
|
|
buildRelease:
|
|
extends: .build_job
|
|
script:
|
|
- bundle exec fastlane buildRelease
|
|
environment:
|
|
name: production
|
|
|
|
testDebug:
|
|
image: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
|
|
stage: test
|
|
dependencies:
|
|
- buildDebug
|
|
script:
|
|
- bundle exec fastlane test
|
|
|
|
publishInternal:
|
|
image: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
|
|
stage: internal
|
|
dependencies:
|
|
- buildRelease
|
|
when: manual
|
|
before_script:
|
|
- echo $google_play_service_account_api_key_json > ~/google_play_api_key.json
|
|
after_script:
|
|
- rm ~/google_play_api_key.json
|
|
script:
|
|
- bundle exec fastlane internal
|
|
|
|
.promote_job:
|
|
image: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
|
|
when: manual
|
|
dependencies: []
|
|
before_script:
|
|
- echo $google_play_service_account_api_key_json > ~/google_play_api_key.json
|
|
after_script:
|
|
- rm ~/google_play_api_key.json
|
|
|
|
promoteAlpha:
|
|
extends: .promote_job
|
|
stage: alpha
|
|
script:
|
|
- bundle exec fastlane promote_internal_to_alpha
|
|
|
|
promoteBeta:
|
|
extends: .promote_job
|
|
stage: beta
|
|
script:
|
|
- bundle exec fastlane promote_alpha_to_beta
|
|
|
|
promoteProduction:
|
|
extends: .promote_job
|
|
stage: production
|
|
# We only allow production promotion on the default branch because
|
|
# it has its own production scoped secret variables.
|
|
only:
|
|
variables:
|
|
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
script:
|
|
- bundle exec fastlane promote_beta_to_production
|