From 1c1e3e2803ba5f08b645afefed44dd149014d26d Mon Sep 17 00:00:00 2001 From: Rudy Hardeman Date: Thu, 10 Nov 2016 11:28:45 +0100 Subject: [PATCH] Added auto building --- .gitlab-ci.yml | 46 ++++++++++++++++++++++++++++++++++++++++++++++ debian/control | 2 +- 2 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..b03a128 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,46 @@ +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 diff --git a/debian/control b/debian/control index 34cc2cc..89d6ad0 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,7 @@ Build-Depends: debhelper (>= 5) Standards-Version: 3.8.4 -Package: cronosagent +Package: tellusagent Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: TellusAgent for BrandMeister DMR Master Server