index : mkinitcpio-archiso32 | |
Archlinux32 initcpio scripts used by archiso | gitolite user |
summaryrefslogtreecommitdiff |
author | David Runge <dvzrv@archlinux.org> | 2021-07-31 15:38:56 +0200 |
---|---|---|
committer | David Runge <dvzrv@archlinux.org> | 2021-07-31 15:38:56 +0200 |
commit | bf02872fba1e2ff3673f5c2bdcebed03e0e62a81 (patch) | |
tree | 787086d75442e90e98ef3e734b2c5fc3889f1c24 | |
parent | c08f10340d50e1ec7465e00dfa7a5f9ba027b99e (diff) | |
parent | 32f1b7698fb7a5652de76d4ca00969a853fa6628 (diff) |
-rw-r--r-- | .gitlab-ci.yml | 21 | ||||
-rw-r--r-- | Makefile | 2 |
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..24e5128 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,21 @@ +--- + +image: archlinux:latest + +stages: + - check + - integration + +check: + before_script: + - pacman --noconfirm -Syu --needed make shellcheck shfmt + script: + - make check + stage: check + +test_installation: + before_script: + - pacman --noconfirm -Syu --needed make + script: + - make install PREFIX=/usr + stage: integration @@ -5,7 +5,7 @@ PREFIX ?= /usr/local INSTALL_DIR=$(DESTDIR)$(PREFIX)/lib/initcpio/install HOOKS_DIR=$(DESTDIR)$(PREFIX)/lib/initcpio/hooks SCRIPT_DIR=$(DESTDIR)$(PREFIX)/lib/initcpio -DOC_DIR=$(DESTDIR)$(PREFIX)/share/doc/archiso +DOC_DIR=$(DESTDIR)$(PREFIX)/share/doc/mkinitcpio-archiso INSTALL_FILES=$(wildcard install/*) HOOKS_FILES=$(wildcard hooks/*) |