Fix wildcard

This commit is contained in:
Flare Microsystems
2024-11-08 17:27:39 -08:00
parent 02b297b7a2
commit cb021e8453

2
Jenkinsfile vendored
View File

@@ -10,7 +10,7 @@ pipeline {
stage('Test'){ stage('Test'){
steps { steps {
sh ''' sh '''
find bin/test -name "*.class" | sed \'s/bin\\///\' | sed \'s/\\.class//\' | tr \'/\' \'.\' | xargs -I {} java -cp ./bin:/tool/junit4/\* org.junit.runner.JUnitCore {} find bin/test -name "*.class" | sed \'s/bin\\///\' | sed \'s/\\.class//\' | tr \'/\' \'.\' | xargs -I {} java -cp ./bin:/tool/junit4/\\* org.junit.runner.JUnitCore {}
''' '''
} }
} }