[gimp-help] gitlab-ci: split a bit more the CI build.



commit 4d9d5ba71b69e9d6a72aa7a151713d23733546dd
Author: Jehan <jehan girinstud io>
Date:   Wed Mar 16 18:52:56 2022 +0100

    gitlab-ci: split a bit more the CI build.
    
    Though now the whole build happens under 1 hour, some of the jobs are a
    bit too close to the timeout to my taste (some take 55 mins). So let's
    split languages into a fourth job.
    
    Also no need to build the landing pages several times. So let's create a
    specific job to assemble the result of all 4 split jobs and build the
    landing page into a separate final job.
    
    (cherry picked from commit bb9ffcaefbf85567938374c214184e907057e9f9)

 .gitlab-ci.yml | 64 +++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 52 insertions(+), 12 deletions(-)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cb137d7e1..73109b5c5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,6 +3,7 @@ image: debian:testing
 stages:
   - prepare
   - build
+  - distribution
 
 variables:
   INSTALL_DIR: "_install"
@@ -33,34 +34,73 @@ build-image:
     expire_in: 1 week
     when: always
     paths:
-    - www/
-    - html/
+    - "${HELP_DIR}"
+    - "${PDF_DIR}"
   script:
     - mkdir _build
     - cd _build
     - ../autogen.sh --prefix=${INSTALL_PREFIX} --without-gimp
     - make && make install
-    - mv ${INSTALL_PREFIX}/share/gimp/3.0/help/ ../www/
-    - cd ../web
-    - make
-    - mv /html/ ../html/
-    - mkdir ../html/2.99
-    - cd ../_build/quickreference
-    - mv ./pdf/ ../../html/2.99/pdf/
+    - mv ${INSTALL_PREFIX}/share/gimp/3.0/help/ ../${HELP_DIR}
+    - mv ../${HELP_DIR}/pdf/ ../${PDF_DIR}
   timeout: 2 hours 30 minutes
   needs: ["build-image"]
 
 build-debian-1:
   extends: .build-debian-base
   variables:
-    LINGUAS: "ca cs da de el en en_GB es"
+    LINGUAS: "ca cs da de el en en_GB"
+    HELP_DIR: "_html1"
+    PDF_DIR: "_pdf1"
 
 build-debian-2:
   extends: .build-debian-base
   variables:
-    LINGUAS: "fi fr hr it ja ko lt nl"
+    LINGUAS: "es fi fr hr it ja"
+    HELP_DIR: "_html2"
+    PDF_DIR: "_pdf2"
 
 build-debian-3:
   extends: .build-debian-base
   variables:
-    LINGUAS: "nn pt_BR ro ru sl sv zh_CN"
+    LINGUAS: "ko lt nl nn pt_BR"
+    HELP_DIR: "_html3"
+    PDF_DIR: "_pdf3"
+
+build-debian-4:
+  extends: .build-debian-base
+  variables:
+    LINGUAS: "ro ru sl sv zh_CN"
+    HELP_DIR: "_html4"
+    PDF_DIR: "_pdf4"
+
+www-debian:
+  stage: distribution
+  image: $CI_REGISTRY_IMAGE:build-debian-latest
+  dependencies:
+    - build-debian-1
+    - build-debian-2
+    - build-debian-3
+    - build-debian-4
+  artifacts:
+    expire_in: 1 week
+    when: always
+    paths:
+    - htdocs/
+  script:
+    # build the landing pages.
+    - cd web
+    - make
+    - cd ..
+    - mv /html/ htdocs/
+    # Move all PDF quickreferences
+    - mkdir -p htdocs/2.10/pdf
+    - mv _pdf1/*.pdf htdocs/2.10/pdf/
+    - mv _pdf2/*.pdf htdocs/2.10/pdf/
+    - mv _pdf3/*.pdf htdocs/2.10/pdf/
+    - mv _pdf4/*.pdf htdocs/2.10/pdf/
+    # Move all the help html files.
+    - mv _html1/* htdocs/2.10/
+    - mv _html2/* htdocs/2.10/
+    - mv _html3/* htdocs/2.10/
+    - mv _html4/* htdocs/2.10/


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]