From 03f2cb37f1a3e23297fc7df285a9a2e95b9ce35e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Thu, 12 Jul 2018 13:35:10 +0200 Subject: [PATCH] Update ATF path in the ./configure invocation used during CI The Docker images used for CI install ATF to /usr, not /usr/local. Update the ./configure invocation in .gitlab-ci.yml accordingly in order to prevent confusion. (cherry picked from commit 12df6829d17925f03ab752872cd93ad228f69e7e) --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 83092761e1..f73f8ddb4e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -100,7 +100,7 @@ stages: - test -w "${CCACHE_DIR}" && export PATH="/usr/lib/ccache:${PATH}" - autoreconf -fi script: - - ./configure --enable-developer --with-libtool --disable-static --with-atf=/usr/local --with-libidn2 + - ./configure --enable-developer --with-libtool --disable-static --with-atf=/usr --with-libidn2 - make -j${PARALLEL_JOBS_BUILD:-1} -k all V=1 artifacts: expire_in: '1 hour'