image: "registry.gitlab.e.foundation:5000/e/apps/docker-android-apps-cicd:legacy" stages: - build before_script: - git submodule sync - git submodule update --init --recursive - export GRADLE_USER_HOME=$(pwd)/.gradle - chmod +x ./gradlew cache: key: ${CI_PROJECT_ID} paths: - .gradle/ build: stage: build script: - ./gradlew build artifacts: paths: - app/build/outputs/apk/ expire_in: 4 weeks