We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26558f7 commit 728c11eCopy full SHA for 728c11e
.travis.yml
@@ -40,7 +40,6 @@ jobs:
40
script:
41
- build/setMavenVersion.sh
42
- mvn verify -fae -DskipITs $MVN_ARGS
43
- - mvn package
44
- ./test-integration.sh
45
after_success:
46
- build/publishCodeCoverage.sh
test-integration.sh
@@ -7,7 +7,8 @@
7
echo "Running integration tests..."
8
9
# Run example, get exit code
10
-exampleoutput=$(java -jar ./modules/examples/target/code-engine-examples-1.0.0-SNAPSHOT.jar)
+jarname=$(ls ./modules/examples/target | grep '.jar' | grep -v 'sources' | grep -v 'original')
11
+exampleoutput=$(java -jar ./modules/examples/target/$jarname)
12
exampleexit=$?
13
if [ $exampleexit -ne 0 ]; then
14
echo "Integration tests failed with exit code $exampleexit"
0 commit comments