* test paths changed * moving javatest to the back caused sometimes error if run before other test
34 lines
867 B
YAML
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
|