Loading .gitlab-ci.yml +11 −18 Original line number Diff line number Diff line image: openjdk:latest image: "registry.gitlab.eelo.io:5000/eelo/docker-android-apps-cicd:latest" stages: - build before_script: - export GRADLE_USER_HOME=`pwd`/.gradle; chmod +x gradlew - export GRADLE_USER_HOME=$(pwd)/.gradle - chmod +x ./gradlew cache: key: ${CI_PROJECT_ID} paths: - .gradle/ test: build: stage: build script: - ./gradlew check artifacts: paths: - build/reports/ pages: script: - ./gradlew dokka - mkdir public && mv build/dokka public artifacts: paths: - public only: - master - ./gradlew assembleDebug Loading
.gitlab-ci.yml +11 −18 Original line number Diff line number Diff line image: openjdk:latest image: "registry.gitlab.eelo.io:5000/eelo/docker-android-apps-cicd:latest" stages: - build before_script: - export GRADLE_USER_HOME=`pwd`/.gradle; chmod +x gradlew - export GRADLE_USER_HOME=$(pwd)/.gradle - chmod +x ./gradlew cache: key: ${CI_PROJECT_ID} paths: - .gradle/ test: build: stage: build script: - ./gradlew check artifacts: paths: - build/reports/ pages: script: - ./gradlew dokka - mkdir public && mv build/dokka public artifacts: paths: - public only: - master - ./gradlew assembleDebug