jjb: lttng-www: move to deb12 builders
authorMichael Jeanson <mjeanson@efficios.com>
Tue, 15 Aug 2023 15:31:16 +0000 (11:31 -0400)
committerMichael Jeanson <mjeanson@efficios.com>
Tue, 15 Aug 2023 15:46:38 +0000 (11:46 -0400)
Change-Id: I5e8fe708af25aa568293da6e6b6b9d0e4c87fb4a
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
jobs/lttng-www.yaml
scripts/lttng-www/deploy.sh

index 15ea9a2bceb8712ef9a9c29aeebe3c5856560bed..4e18c59090f374ad808af6110199cacc416a366c 100644 (file)
@@ -2,7 +2,7 @@
     name: lttng-www
     project-type: freestyle
     defaults: global
-    node: amd64-rootnode-jammy
+    node: amd64-rootnode
 
     description: |
       This job is responsible for updating the lttng website.
           !include-raw: scripts/lttng-www/deploy.sh
 
     scm:
-      - lttng-www
+      - git:
+          url: git@git.efficios.com:lttng-www.git
+          credentials-id: 63a5abb5-9056-47e2-b419-f5946c1b8f08
+          basedir: ./
+          skip-tag: true
+          branches:
+            - master
 
     publishers:
+      - archive:
+          artifacts: 'site/**,prod/**'
+          follow-symlinks: true
+          allow-empty: false
       - ircbot:
           strategy: statechange-only
           message-type: summary
           matrix-trigger: only-parent
           send-to:
             - recipients
-
-- scm:
-    name: lttng-www
-    scm:
-      - git:
-          url: git@git.efficios.com:lttng-www.git
-          credentials-id: 63a5abb5-9056-47e2-b419-f5946c1b8f08
-          basedir: ./
-          skip-tag: true
-          branches:
-            - master
-
index ac35fb515955ca662fc85202f4feb6716f501c0a..3d73a4d3ca74b528f7351d7a7b409e85cb1ecf8c 100755 (executable)
 
 set -exu
 
+print_header() {
+    set +x
+
+    local message=" $1 "
+    local message_len
+    local padding_len
+
+    message_len="${#message}"
+    padding_len=$(( (80 - (message_len)) / 2 ))
+
+    printf '\n'; printf -- '#%.0s' {1..80}; printf '\n'
+    printf -- '-%.0s' {1..80}; printf '\n'
+    printf -- '#%.0s' $(seq 1 $padding_len); printf '%s' "$message"; printf -- '#%.0s' $(seq 1 $padding_len); printf '\n'
+    printf -- '-%.0s' {1..80}; printf '\n'
+    printf -- '#%.0s' {1..80}; printf '\n\n'
+
+    set -x
+}
+
 # Add ssh key for deployment
 cp "$HOST_PUBLIC_KEYS" ~/.ssh/known_hosts
 cp "$KEY_FILE_VARIABLE" ~/.ssh/id_rsa
 
 # lttng-www dependencies
 export DPKG_FRONTEND=noninteractive
-# Nodejs
-# Using Debian, as root
 apt-get update
-apt-get install -y nodejs npm
-apt-get install -y ruby ruby-bundler ruby-dev
+
+print_header "Install web tooling dependencies"
+apt-get install -y nodejs node-grunt-cli npm ruby-bundler ruby-dev python3-pip python3-venv
+
 ruby -v
 
-apt-get install -y asciidoc xmlto python3 python3-pip doclifter
-npm install -g grunt-cli
-npm install -g sass
+apt-get install -y xmlto doclifter linkchecker
+
+python3 -m venv build_venv
+# shellcheck disable=SC1091
+source build_venv/bin/activate
 
 bundle config set --local path "vendor/bundle"
 
-./bootstrap.sh
+./bootstrap-debian.sh
 
-bundle exec grunt build:prod --network
+print_header "Build website with grunt"
+bundle exec grunt build:prod
 
-apt-get install -y linkchecker
+print_header "Check links"
 bundle exec grunt connect:prod watch:prod &
 SERVER_PID="${!}"
 sleep 10 # While serve:prod starts up
-OUTPUT_FILE="$(mktemp -d)/linkchecker-out.csv"
-chown nobody "$(dirname "${OUTPUT_FILE}")"
+
+OUTPUT_DIR="$(mktemp -d)"
+OUTPUT_FILE="${OUTPUT_DIR}/linkchecker-out.csv"
+
+# linkchecker drops privileges to 'nobody' when run as root
+chown nobody "${OUTPUT_DIR}"
+
 # @Note: Only internal links are checked by default
 if ! linkchecker -q -F "csv/utf-8/${OUTPUT_FILE}" http://localhost:10000/ ; then
     echo "Linkchecker failed or found broken links"
     cat "${OUTPUT_FILE}"
     kill "${SERVER_PID}"
-    rm -rf "${OUTPUT_FILE}/.."
+    rm -rf "${OUTPUT_DIR}"
     sleep 5 # Let serve:prod stop
     exit 1
 else
-    rm -rf "${OUTPUT_FILE}/.."
+    rm -rf "${OUTPUT_DIR}"
     kill "${SERVER_PID}"
 fi
 
+print_header "Deploy website"
 bundle exec grunt deploy:prod --network
 
 # EOF
This page took 0.026445 seconds and 4 git commands to generate.