From 00f16550ff51ec50527d211a444fe36616118f8c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Aug 2026 14:40:36 +0000 Subject: [PATCH 1/3] Initial plan From 604513d7e6ccf7556840c10623c0affdba1c4cac Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Aug 2026 14:42:26 +0000 Subject: [PATCH 2/3] Fix deploy workflow: install asciidoc before building HTML docs Co-authored-by: hub966 <205647957+hub966@users.noreply.github.com> --- .github/workflows/static.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 47459032285e8e..c5793be6a34ac6 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -33,6 +33,8 @@ jobs: uses: actions/checkout@v6 - name: Install dependencies run: ci/install-dependencies.sh + - name: Install asciidoc + run: sudo apt-get update -q && sudo apt-get install -y asciidoc - name: Build HTML documentation run: make -C Documentation html - name: Stage Pages content From 551714f707cee17640891743df702dbb0f36d318 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 7 Aug 2026 07:31:24 +0000 Subject: [PATCH 3/3] ci: add --fix-missing to apt-get install to handle transient network errors Co-authored-by: hub966 <205647957+hub966@users.noreply.github.com> --- ci/install-dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/install-dependencies.sh b/ci/install-dependencies.sh index 10c3530d1aacdd..f64fe28df117f0 100755 --- a/ci/install-dependencies.sh +++ b/ci/install-dependencies.sh @@ -59,7 +59,7 @@ ubuntu-*|i386/ubuntu-*|debian-*) esac sudo apt-get -q update - sudo apt-get -q -y install \ + sudo apt-get -q -y --fix-missing install \ $LANGUAGES apache2 cvs cvsps git gnupg $SVN \ make libssl-dev libcurl4-openssl-dev libexpat-dev wget sudo default-jre \ tcl tk gettext zlib1g-dev perl-modules liberror-perl libauthen-sasl-perl \