tellusagent/.gitlab-ci.yml
2016-11-27 13:17:02 +01:00

49 lines
764 B
YAML

debian_amd64:
stage: build
script:
- ./UpdateLog.sh
- make debian-package
- mkdir build
- cp ../tellusagent*.deb build/
- rm ../tellusagent*
only:
- master
artifacts:
paths:
- build/*
tags:
- debian
- amd64
debian_386:
stage: build
script:
- ./UpdateLog.sh
- ARCH=i386 make debian-package
- mkdir build
- cp ../tellusagent*.deb build/
- rm ../tellusagent*
only:
- master
artifacts:
paths:
- build/*
tags:
- debian
- i386
debian_armhf:
stage: build
script:
- ./UpdateLog.sh
- make debian-package
- cp ../tellusagent*.deb .
- rm ../tellusagent*
only:
- master
artifacts:
paths:
- build/*
tags:
- debian
- armv6