M332-PT-NGCC/.gitlab-ci.yml

19 lines
485 B
YAML
Raw Normal View History

image: openjdk:11
variables:
GIT_SSL_NO_VERIFY: "1"
compileAndTests :
# References to libraries should be managed by any other ways (maven, npm, pip, ...)
before_script:
- ls -la
- mkdir bin
2019-10-10 12:07:13 +02:00
- javac -cp LIB/*:NGCC/jar/*:bin:. -d bin NGCC/src/*/*.java
- ls bin
2019-10-10 12:07:13 +02:00
- javac -cp LIB/*:NGCC/jar/*:bin:. -d bin NGCC/tests/*/*.java
script:
- java -jar LIB/junit-platform-console-standalone-1.5.1.jar --class-path bin --scan-class-path
#allow_failure: true