added image proc test in continuous integration

this test (which runes fiji image processing) will help detect
regressions.
This commit is contained in:
Guillaume Raffy 2019-04-08 19:18:45 +02:00
parent 44512ba4eb
commit de1e837d60
2 changed files with 11 additions and 0 deletions

5
Jenkinsfile vendored
View File

@ -25,6 +25,11 @@ pipeline {
// sh 'mv ~/.bashrc.bak ~/.bashrc'
}
}
stage('Testing image processing...') {
steps {
sh './test1.bash'
}
}
stage('Building HTML documentation...') {
steps {
echo 'Building HTML documentation...'

6
test1.bash Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
wget 'https://downloads.imagej.net/fiji/latest/fiji-linux64.zip'
unzip './fiji-linux64.zip'
rm './fiji-linux64.zip'
./Fiji.app/ImageJ-linux64 --ij2 --headless --run './lipase.py'