tellusagent/.gitlab-ci.yml

46 lines
710 B
YAML

debian_amd64:
stage: build
script:
- make debian-package
- mkdir build
- cp ../tellusagent*.deb build/
- rm ../tellusagent*
only:
- master
artifacts:
paths:
- build/*
tags:
- debian
- amd64
debian_386:
stage: build
script:
- 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:
- make debian-package
- cp ../tellusagent*.deb .
- rm ../tellusagent*
only:
- master
artifacts:
paths:
- tellusagent*.deb
tags:
- debian
- armv6