aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@yeah.nah.nz>2019-03-11 17:04:51 +1300
committerDavid Phillips <david@yeah.nah.nz>2019-03-11 17:04:51 +1300
commit77af44871c7d916c9ce63cc9b87021b27f5890bf (patch)
tree02c26baa056802ee49891deffcf7ccd81b8697f1
parentd7f50289b9214c6de41e9ea2d271d916db448ef1 (diff)
downloadsand-leek-77af44871c7d916c9ce63cc9b87021b27f5890bf.tar.xz
Re-add Arch Linux runner on GitLab CI
Turns out the image only had a subtle name change
-rw-r--r--.gitlab-ci.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c88ce29..ec0e571 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,6 +1,15 @@
stages:
- build-test-all
+arch:
+ image: archlinux/base
+ stage: build-test-all
+ before_script:
+ - pacman --noconfirm -Syu base-devel clang python
+ script:
+ - make CC=gcc clean all test
+ - make CC=clang clean all test
+
debian-stable:
image: debian:stable
stage: build-test-all