From 67d8926913ebcd62ecb991b956818036cb278a7a Mon Sep 17 00:00:00 2001 From: Dorota Czaplejewicz Date: Thu, 25 Jun 2020 15:50:44 +0000 Subject: [PATCH] ci: Add amber job --- .gitlab-ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3be01fb5..6a6703e6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -53,6 +53,23 @@ build_deb: - debuild -i -us -uc -b - cp ../*.deb . +build_deb:amber: + image: pureos/amber + tags: + - librem5 + stage: build + artifacts: + paths: + - "*.deb" + script: + - echo "deb http://ci.puri.sm/ scratch librem5" > /etc/apt/sources.list.d/ci.list + - apt-get -y update + - rm -f ../*.deb + - apt-get -y build-dep . + - apt-get -y install devscripts + - debuild -i -us -uc -b + - cp ../*.deb . + build_deb:arm64: tags: - librem5:arm64