File tree Expand file tree Collapse file tree 1 file changed +21
-3
lines changed
Expand file tree Collapse file tree 1 file changed +21
-3
lines changed Original file line number Diff line number Diff line change 11language : java
2+ os : linux
3+ dist : xenial
4+
25jdk :
36 - openjdk11
4-
7+ services :
8+ - docker
59before_install :
610 - pushd LibLaserCut && mvn install && popd
711 # make sure we install legacy deps
812 - mvn initialize
9-
1013script :
1114 - " ./test.sh"
12- - " mvn test"
15+ - if [ "$TRAVIS_TAG" = "" ]; then mvn test; fi
16+ - OUT=`pwd`/out
17+ - mkdir $OUT
18+ - chmod ugo+rwx $OUT
19+ - if [ "$TRAVIS_TAG" != "" ]; then docker run -v $OUT:/app/output registry.gitlab.com/t-oster/visicutbuildservice; fi
20+ - echo "Artifacts:"
21+ - ls $OUT/branch-master/**/*
1322
23+ deploy :
24+ provider : releases
25+ file_glob : true
26+ file : out/branch-master/**/*
27+ token : $GITHUB_TOKEN
28+ skip_cleanup : true
29+ cleanup : false
30+ on :
31+ tags : true
You can’t perform that action at this time.
0 commit comments