You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ng-tracker/.gitlab-ci.yml

31 lines
450 B
YAML

6 years ago
image: gradle:alpine
cache:
key: "$CI_PROJECT_ID"
paths:
- .gradle/
variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
#before_script:
build:
stage: build
script: gradle --build-cache assemble
cache:
key: "$CI_PROJECT_ID"
policy: push
paths:
6 years ago
- build
- .gradle
#test:
# stage: test
# script: gradle check
# cache:
# key: "$CI_PROJECT_ID"
# policy: pull
# paths:
# - build
# - .gradle