Skip to content
Snippets Groups Projects
Commit 6cd2feff authored by Emil Svevar's avatar Emil Svevar
Browse files

Merge branch 'Fix_tests' into 'master'

Fix tests

See merge request !3
parents 40bc7004 45867c0e
No related branches found
No related tags found
1 merge request!3Fix tests
Pipeline #105086 passed
...@@ -3,16 +3,12 @@ image: alash325/javaant:latest ...@@ -3,16 +3,12 @@ image: alash325/javaant:latest
stages: stages:
- build - build
- test - test
- publish - deploy
build: build:
stage: build stage: build
script: script:
- ant build - ant build
artifacts:
paths:
- build/
test: test:
stage: test stage: test
...@@ -20,13 +16,16 @@ test: ...@@ -20,13 +16,16 @@ test:
- ant -lib test/lib/junit.jar -Dtest=AllTests testall - ant -lib test/lib/junit.jar -Dtest=AllTests testall
artifacts: artifacts:
paths: paths:
- build/report - ./build/report/
reports:
publish: junit:
stage: publish - ./build/report/xml/TEST-*.*
pages:
stage: deploy
dependencies:
- test
script: script:
- mkdir public - mv ./build/report/ public/
- cp -r build/report/* public/
artifacts: artifacts:
paths: paths:
- public - public
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment