libbsd/.gitlab-ci.yml
Guillem Jover a9fc285988 build: Use apt-get instead of apt in the GitLab CI
The former is to be used programmatically, while the latter is intended
for interactive use.
2021-02-28 05:27:35 +01:00

11 lines
244 B
YAML

image: debian:buster
test:
before_script:
- apt-get update -qq
- apt-get install -qq -y --no-install-recommends
git gcc make autoconf automake libtool libmd-dev
script:
- ./autogen && ./configure
- make check