forked from nextflow-io/nextflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcircle.yml
31 lines (27 loc) · 808 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
30
31
machine:
java:
version: oraclejdk8
services:
- docker
environment:
GRADLE_OPTS: -Dorg.gradle.daemon=false
dependencies:
pre:
- mkdir -p ~/.nextflow/aws
cache_directories:
- ~/.nextflow/aws
checkout:
post:
- git submodule update --init
test:
pre:
- rm $HOME/.gitconfig
- mkdir -p "$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 circleci