37 lines
No EOL
879 B
YAML
37 lines
No EOL
879 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/openjdk:8-jdk
|
|
|
|
working_directory: ~/repo
|
|
|
|
environment:
|
|
JVM_OPTS: -Xmx3200m
|
|
TERM: dumb
|
|
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
keys:
|
|
- kobalt-dependencies-{{ checksum "kobalt/src/Build.kt" }}
|
|
# fallback to using the latest cache if no exact match is found
|
|
- kobalt-dependencies-
|
|
|
|
- run:
|
|
name: Check Versions
|
|
command: ./kobaltw checkVersions
|
|
|
|
- save_cache:
|
|
paths: ~/.kobalt
|
|
key: kobalt-dependencies-{{ checksum "kobalt/src/Build.kt" }}
|
|
|
|
- run:
|
|
name: Assemble & Test
|
|
command: ./kobaltw assemble test
|
|
|
|
- store_artifacts:
|
|
path: kobaltBuild/test-output/
|
|
destination: test-output
|
|
- store_test_results:
|
|
path: kobaltBuild/test-output/ |