Run «apt install» in non-interactive mode, and do not install
Recommends. Replace build-essential, which is rather fat, with gcc
and make. Execute autogen instead of autoreconf directly.
before_script:
- apt update -qq
- - apt install build-essential autoconf automake libtool
+ - apt install --no-install-recommends -y gcc make autoconf automake libtool
stages:
- autogen
autogen:
stage: autogen
- script: autoreconf -f -i && ./configure
+ script: ./autogen && ./configure
build:
stage: build