diff options
author | David Phillips <david@yeah.nah.nz> | 2019-03-11 17:04:51 +1300 |
---|---|---|
committer | David Phillips <david@yeah.nah.nz> | 2019-03-11 17:04:51 +1300 |
commit | 77af44871c7d916c9ce63cc9b87021b27f5890bf (patch) | |
tree | 02c26baa056802ee49891deffcf7ccd81b8697f1 | |
parent | d7f50289b9214c6de41e9ea2d271d916db448ef1 (diff) | |
download | sand-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.yml | 9 |
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 |