You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
455 B
15 lines
455 B
3 years ago
|
summary: Basic smoke test
|
||
|
prepare:
|
||
|
how: install
|
||
|
package: java-11-openjdk-devel
|
||
|
execute:
|
||
|
script: |
|
||
|
set -x
|
||
|
modello plans/smoke.mdo java test-src 1.0.0 foo 8
|
||
|
javac -d test-bin test-src/smoke/*
|
||
|
modello plans/smoke.mdo stax-reader test-src 1.0.0 foo 8
|
||
|
javac -d test-bin -cp test-bin test-src/smoke/io/stax/*
|
||
|
find test-src test-bin
|
||
|
test -f test-bin/smoke/SomeBean.class
|
||
|
test -f test-bin/smoke/io/stax/SmokeStaxReader.class
|