Skip to content

Commit d975962

Browse files
committed
Fix integration tests
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
1 parent 5ee88cd commit d975962

File tree

4 files changed

+3
-12
lines changed

4 files changed

+3
-12
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
- name: Run tests
144144
run: |
145145
cat $HOME/.nextflow/scm
146-
make assemble install
146+
make clean assemble install
147147
bash test-ci.sh
148148
env:
149149
TEST_JDK: ${{ matrix.java_version }}

packing.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ protected coordinates( it ) {
9090
/*
9191
* Compile and pack all packages
9292
*/
93-
task packOne( dependsOn: [clean, compile, ":nextflow:shadowJar"]) {
93+
task packOne( dependsOn: [compile, ":nextflow:shadowJar"]) {
9494
doLast {
9595
def source = "modules/nextflow/build/libs/nextflow-${version}-one.jar"
9696
ant.copy(file: source, todir: releaseDir, overwrite: true)
@@ -99,7 +99,7 @@ task packOne( dependsOn: [clean, compile, ":nextflow:shadowJar"]) {
9999
}
100100
}
101101

102-
task packDist( dependsOn: [clean, compile, ":nextflow:shadowJar"]) {
102+
task packDist( dependsOn: [compile, ":nextflow:shadowJar"]) {
103103

104104
doLast {
105105
file(releaseDir).mkdirs()

test-ci.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ fi
1616
export WITH_DOCKER='-with-docker'
1717
export NXF_PLUGINS_DIR=$PWD/build/plugins
1818
export NXF_CMD=$PWD/nextflow;
19-
export CAPSULE_LOG=none
2019
export TEST_JDK
2120
export TEST_MODE
2221

validation/test.sh

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,6 @@ if [[ $TEST_MODE == 'test_integration' ]]; then
4646
$NXF_CMD run nextflow-io/rnaseq-nf -with-docker $OPTS
4747
$NXF_CMD run nextflow-io/rnaseq-nf -with-docker $OPTS -resume
4848

49-
#
50-
# RNASEQ-NF with async finalizer
51-
#
52-
echo nextflow-io/rnaseq-nf async finalizer
53-
[[ $TOWER_ACCESS_TOKEN ]] && OPTS='-with-tower' || OPTS=''
54-
NXF_ENABLE_ASYNC_FINALIZER=true $NXF_CMD run nextflow-io/rnaseq-nf -with-docker
55-
NXF_ENABLE_ASYNC_FINALIZER=true $NXF_CMD run nextflow-io/rnaseq-nf -with-docker -resume
56-
5749
exit 0
5850
fi
5951

0 commit comments

Comments
 (0)