Files
Sourcetrail/.gitlab-ci.yml
T
Andreas Stallinger bb4cc9662c build: ci fix
* test paths changed
* moving javatest to the back caused sometimes error if run before other test
2017-02-07 13:06:47 +01:00

34 lines
867 B
YAML

Linux64:
image: st4ll1/coati_linux_64
stage: deploy
only:
- master
script:
- ./script/setup.sh
- ./script/buildonly.sh all
- ./script/buildonly.sh package
- ./build/Release/app/Coati --licenseFile ./setup/license.txt
- cd ./bin/test
- ../../build/Release/test/Coati_test
artifacts:
paths:
- distr/Coati*.tar.gz
expire_in: 3 days
Linux32:
image: st4ll1/coati_linux_32
stage: deploy
only:
- master
script:
- ./script/setup.sh
- ./script/buildonly.sh all
- ./script/buildonly.sh package
- ./build/Release/app/Coati --licenseFile ./setup/license.txt
- cd ./bin/test
- ../../build/Release/test/Coati_test
artifacts:
paths:
- distr/Coati*.tar.gz
expire_in: 3 days