blob: 24e51288342b26584e740f7f2d0af5ee6d9350d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|