Skip to content
Snippets Groups Projects
Commit 24b7baf8 authored by Oscar Eriksson's avatar Oscar Eriksson
Browse files

Merge branch 'CI_oscer447' into 'master'

Ci oscer447

See merge request !1
parents a1df9888 b18f32a7
No related branches found
No related tags found
1 merge request!1Ci oscer447
Pipeline #105623 passed
image: alash325/javaant:latest
stages: # List of stages for jobs, and their order of execution
- build
- test
- deploy
build: # This job runs in the build stage, which runs first.
stage: build
script:
- ant build
test: # This job runs in the test stage.
stage: test # It only starts when the job in the build stage completes successfully.
script:
- ant -lib test/lib/junit.jar -Dtest=AllTests testall
artifacts:
paths:
- ./build/report/
reports:
junit:
- ./build/report/xml/TEST-*.*
pages:
stage: deploy
dependencies:
- test
script:
- mv ./build/report/ public/
artifacts:
paths:
- public
......@@ -32,7 +32,7 @@ public class AllTests {
suite.addTest(net.sf.freecol.common.option.AllTests.suite());
suite.addTest(net.sf.freecol.common.model.AllTests.suite());
suite.addTest(net.sf.freecol.common.utils.AllTests.suite());
suite.addTest(net.sf.freecol.common.sound.AllTests.suite());
//suite.addTest(net.sf.freecol.common.sound.AllTests.suite());
//$JUnit-END$
return suite;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment