ecd339278d
Makefile: Move shellcheck commands from .gitlab-ci.yml. .gitlab-ci.yml: Run `make check`. Prevent partial upgrades, i.e. use '-Syu'. Prevent reinstalling already installed packages by using pacman's '--needed' option. Don't force-download the package database.
12 lines
165 B
YAML
12 lines
165 B
YAML
---
|
|
|
|
default:
|
|
image: archlinux/base
|
|
before_script:
|
|
- pacman --noconfirm -Syu --needed base-devel shellcheck
|
|
|
|
lint:
|
|
stage: build
|
|
script:
|
|
- make check
|