AntennaPod/.circleci/config.yml

83 lines
2.9 KiB
YAML
Raw Normal View History

2019-10-04 22:25:40 +02:00
version: 2.1
jobs:
2019-10-04 22:25:40 +02:00
build:
parameters:
build-steps:
description: "Steps that will be executed for this build"
type: steps
default: []
2019-10-04 22:09:57 +02:00
docker:
- image: circleci/android:api-28
working_directory: ~/AntennaPod
environment:
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx1536m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError"'
_JAVA_OPTIONS: "-Xms256m -Xmx1280m"
steps:
- checkout
- restore_cache:
keys:
- v1-android-{{ checksum "build.gradle" }}
- v1-android-
- run:
name: Create temporary release keystore
command: keytool -noprompt -genkey -v -keystore "app/keystore" -alias alias -storepass password -keypass password -keyalg RSA -validity 10 -dname "CN=antennapod.org, OU=dummy, O=dummy, L=dummy, S=dummy, C=US"
2019-10-04 22:25:40 +02:00
- steps: << parameters.build-steps >>
2019-10-04 22:09:57 +02:00
- save_cache:
paths:
- ~/.android
- ~/.gradle
- ~/android
key: v1-android-{{ checksum "build.gradle" }}
2019-09-24 11:12:35 +02:00
2019-09-24 10:50:51 +02:00
workflows:
unit-tests:
2019-09-24 10:50:51 +02:00
jobs:
2019-10-04 22:25:40 +02:00
- build:
2019-10-04 22:39:10 +02:00
name: Build debug
2019-10-04 22:25:40 +02:00
build-steps:
- run:
name: Build debug
command: ./gradlew assembleDebug -PdisablePreDex
- run:
name: Execute debug unit tests
command: ./gradlew :core:testPlayDebugUnitTest -PdisablePreDex
- build:
2019-10-04 22:39:10 +02:00
name: Build release
2019-10-04 22:25:40 +02:00
build-steps:
- run:
name: Build release
command: ./gradlew assembleRelease -PdisablePreDex
- run:
name: Execute release unit tests
command: ./gradlew :core:testPlayReleaseUnitTest -PdisablePreDex
- build:
2019-10-04 22:39:10 +02:00
name: Build integration tests
2019-10-04 22:25:40 +02:00
build-steps:
- run:
name: Build integration tests
command: ./gradlew :app:assemblePlayDebugAndroidTest -PdisablePreDex
- build:
2019-10-04 22:39:10 +02:00
name: Build free
2019-10-04 22:25:40 +02:00
build-steps:
- run:
name: Build free (for F-Droid)
command: ./gradlew assembleFreeRelease -PdisablePreDex -PfreeBuild
2019-09-24 11:12:35 +02:00
static-analysis:
2019-09-24 11:12:35 +02:00
jobs:
2019-10-04 22:25:40 +02:00
- build:
2019-10-04 22:39:10 +02:00
name: Checkstyle
2019-10-04 22:25:40 +02:00
build-steps:
- run:
name: Checkstyle
command: ./gradlew checkstyle
2020-03-30 01:05:33 +02:00
- run:
name: Diff-Checkstyle
command: |
git fetch origin develop
branchBaseCommit=`git merge-base origin/develop HEAD`
echo "Comparing to $branchBaseCommit"
curl -s -L https://github.com/yangziwen/diff-checkstyle/releases/download/0.0.4/diff-checkstyle.jar > diff-checkstyle.jar
java -Dconfig_loc=config/checkstyle -jar diff-checkstyle.jar -c config/checkstyle/checkstyle-new-code.xml --git-dir . --base-rev $branchBaseCommit