From: Guillem Jover Date: Sun, 28 Feb 2021 04:14:54 +0000 (+0100) Subject: build: Use apt-get instead of apt in the GitLab CI X-Git-Tag: 0.11.4~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9fc285988c010eaf1deb682c5d6335abf87ccab;p=thirdparty%2Flibbsd.git 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. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 21a1bc7..6fae8fe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,8 +2,9 @@ image: debian:buster test: before_script: - - apt update -qq - - apt install -qq -y --no-install-recommends git gcc make autoconf automake libtool libmd-dev + - 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