aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin/Geno <geno+dev@fireorbit.de>2018-11-09 09:57:09 +0100
committerMartin/Geno <geno+dev@fireorbit.de>2018-11-09 09:57:16 +0100
commit3a714cf31e5037a9fea03e66c5a28546e4eaf55a (patch)
treef68f09c642539ac0c0b9837d55869f24de153a61
parent5eb53bcf1d456f9199397eaf00651c5a17edae45 (diff)
ci add mini tests
-rw-r--r--.circleci/config.yml26
-rw-r--r--.gitlab-ci.yml9
2 files changed, 34 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 6b9f76d3e..0b2c076b8 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -1,15 +1,38 @@
version: 2
jobs:
+ test:
+ docker:
+ - image: registry.gitlab.com/fdroid/ci-images-client:latest
+ steps:
+ - checkout
+ - restore_cache:
+ key: gradle
+ - run: export GRADLE_USER_HOME=$PWD/.gradle
+ - run: echo y | sdkmanager "platforms;android-$(sed -n 's,.*compileSdkVersion\s*\([0-9][0-9]*\).*,\1,p' build.gradle)" > /dev/null
+ - run: ./gradlew lint
+ - save_cache:
+ paths:
+ - .gradle/caches
+ - .gradle/wrapper
+ key: gradle
+ - store_artifacts:
+ path: build/outputs/apk/standard
+ destination: apk
build:
docker:
- image: registry.gitlab.com/fdroid/ci-images-client:latest
steps:
- checkout
- restore_cache:
- key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
+ key: gradle
- run: export GRADLE_USER_HOME=$PWD/.gradle
- run: echo y | sdkmanager "platforms;android-$(sed -n 's,.*compileSdkVersion\s*\([0-9][0-9]*\).*,\1,p' build.gradle)" > /dev/null
- run: ./gradlew assembleStandard
+ - save_cache:
+ paths:
+ - .gradle/caches
+ - .gradle/wrapper
+ key: gradle
- store_artifacts:
path: build/outputs/apk/standard
destination: apk
@@ -19,3 +42,4 @@ workflows:
build_only:
jobs:
- build
+ - test
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 020210902..820d72a5a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,6 +7,7 @@ cache:
stages:
- build
+ - test
before_script:
- export GRADLE_USER_HOME=$PWD/.gradle
@@ -22,6 +23,14 @@ build:
paths:
- build/outputs/
+build:
+ stage: test
+ script:
+ - ./gradlew lint
+ artifacts:
+ paths:
+ - build/outputs/
+
after_script:
# this file changes every time but should not be cached
- rm -f $GRADLE_USER_HOME/caches/modules-2/modules-2.lock