Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- stages:
- - compile
- - deploy
- windows compile:
- stage: compile
- tags:
- - windows
- script:
- -test
- artifacts:
- paths:
- - xxxx.exe
- - build/deploy
- when: on_success
- expire_in: 7day
- linux compile:
- stage: compile
- tags:
- - linux
- script:
- - test
- artifacts:
- paths:
- - build/xxx_$CI_PIPELINE_IID
- windows deploy:
- stage: deploy
- tags:
- - windows
- script:
- - test
- artifacts:
- paths:
- - xxx_$CI_PIPELINE_IID.zip
- when: on_success
- linux deploy:
- stage: deploy
- tags:
- - linux
- script:
- - tar -czvf xxx_$CI_PIPELINE_IID.tar.gz build/xxx_$CI_PIPELINE_IID
- artifacts:
- paths:
- - xxx_$CI_PIPELINE_IID.tar.gz
- when: on_success
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement