forked from nextflow-io/nextflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
29 lines (25 loc) · 784 Bytes
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
machine:
java:
version: oraclejdk8
services:
- docker
environment:
GRADLE_OPTS: -Dorg.gradle.daemon=false
dependencies:
cache_directories:
- "~/.nextflow/aws"
checkout:
post:
- git submodule update --init
test:
pre:
- rm $HOME/.gitconfig
- mkdir "$HOME/.nextflow" && echo "providers.github.auth='$NXF_GITHUB_ACCESS_TOKEN'" > "$HOME/.nextflow/scm"
- make assemble
override:
- make check install && ./integration-tests.sh :
timeout: 2700
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
- bash pub-tests.sh build/reports/tests/ circleci