- test -w "${CCACHE_DIR}" && export PATH="/usr/lib/ccache:${PATH}"
- autoreconf -fi
script:
- - ./configure --enable-developer --with-libtool --disable-static --with-atf=/usr --with-libidn2 "${EXTRA_CONFIGURE}"
+ - ./configure --enable-developer --with-libtool --disable-static --with-atf=/usr --with-libidn2 --prefix=$HOME/.local "${EXTRA_CONFIGURE}"
- make -j${PARALLEL_JOBS_BUILD:-1} -k all V=1
artifacts:
expire_in: '1 hour'
untracked: true
+.install_test: &install_test_job
+ stage: test
+ before_script:
+ - mkdir $HOME/.local
+ script:
+ - make install
+
.system_test: &system_test_job
stage: test
before_script:
<<: *system_test_job
dependencies:
- build:debian:sid:i386
+
+install:debian:sid:amd64:
+ <<: *debian_sid_amd64_image
+ <<: *install_test_job
+ dependencies:
+ - build:debian:sid:amd64