aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlns <matzeton@googlemail.com>2018-06-14 12:05:59 +0200
committerlns <matzeton@googlemail.com>2018-06-14 12:05:59 +0200
commit0fe9c917d1c6ff4360845f4c137159d3389e23ad (patch)
tree28d7c952981d615e8fe2072f1d67fe9467755837
parentde8f358d1e35fbe2e001c7771660279d81f67d21 (diff)
added archlinux build to gitlab yaml
Signed-off-by: lns <matzeton@googlemail.com>
-rw-r--r--.gitlab-ci.yml15
1 files changed, 14 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e8145b8..7aa096f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,7 @@ stages:
- build
- sast
-build:
+build-debian:
image: debian:stable
script:
- apt-get update -qq && apt-get install -y -qq coreutils make autoconf automake gcc pkg-config libseccomp-dev libssh-dev valgrind
@@ -15,6 +15,19 @@ build:
- ./src/potd
- ./config.log
+build-arch:
+ image: base/archlinux
+ script:
+ - pacman -Syu --noconfirm coreutils make autoconf automake gcc pkg-config libseccomp-dev libssh-dev valgrind
+ - ./autogen.sh
+ - ./configure
+ - make
+ stage: build
+ artifacts:
+ paths:
+ - ./src/potd
+ - ./config.log
+
sast:
image: docker:stable
only: