From 2877f9cc709a3ca40c3c2a0b6f2a4c054b71cb9b Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Thu, 9 Mar 2023 10:58:18 -0800 Subject: [PATCH] tests: Add contributing and installation to doc job --- utils/tests/gitlab-ci-doc.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/utils/tests/gitlab-ci-doc.yml b/utils/tests/gitlab-ci-doc.yml index 3ffbef812..ca96e0577 100644 --- a/utils/tests/gitlab-ci-doc.yml +++ b/utils/tests/gitlab-ci-doc.yml @@ -98,3 +98,27 @@ models: # - mv build/latex/ns-3-model-library.pdf ../../public # only: # - master + +contributing: + extends: .doc + script: + # - mkdir -p public/contributing + - cd doc/contributing + - make html + - make latexpdf + # - mv build/html ../../public/manual + # - mv build/latex/ns-3-manual.pdf ../../public/ + # only: + # - master + +installation: + extends: .doc + script: + # - mkdir -p public/installation + - cd doc/installation + - make html + - make latexpdf + # - mv build/html ../../public/manual + # - mv build/latex/ns-3-manual.pdf ../../public/ + # only: + # - master