From b28fc8c936ecf6aa56b5815daebf141bc17664de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Fri, 19 Oct 2018 22:42:44 +0200 Subject: [PATCH] Generate the ARM during CI Add a CI job which generates the HTML version of the ARM and makes it available for download. Since this is expected to be a quick process, the new job is enabled for all pipelines. (cherry picked from commit 3f443468e0ceaae430ebb2bc98f5a808b5539253) --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 247038d48f..c19fcfd507 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -117,6 +117,8 @@ stages: - ./configure --enable-developer --with-libtool --disable-static --with-atf=/usr --with-libidn2 --prefix=$HOME/.local --without-make-clean "${EXTRA_CONFIGURE}" || cat config.log - make -j${PARALLEL_JOBS_BUILD:-1} -k all V=1 artifacts: + paths: + - doc/ expire_in: '1 hour' untracked: true @@ -177,6 +179,19 @@ precheck:debian:sid:amd64: expire_in: '1 week' when: on_failure +docs:debian:sid:amd64: + <<: *debian_sid_amd64_image + stage: test + dependencies: + - build:debian:sid:amd64 + script: + - make -C doc/misc docbook + - make -C doc/arm Bv9ARM.html + artifacts: + paths: + - doc/arm/ + expire_in: '1 hour' + #build:debian:jessie:amd64: # <<: *debian_jessie_amd64_image # <<: *build_job