Skip to content
Snippets Groups Projects

Newbranch

Merged Ludvig Hedlund requested to merge ludhe009/group3:newbranch into master
1 file
+ 36
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 36
0
image: alash325/javaant:latest
build:
stage: build
script:
- ls
- ant build
artifacts:
when: always
paths:
- ./build
testing:
stage: test
script:
- ant -lib test/lib/junit.jar -Dtest=AllTests testall
artifacts:
when: always
paths:
- ./build/report
reports:
junit: ./build/report/xml/TEST-net.sf.freecol.AllTests.xml
pages:
stage: deploy
script:
- mkdir .public
- cp -r ./build/report/* .public
- mv .public public
artifacts:
paths:
- public
only:
- newbranch
Loading