From dfcfed8acee01559372c149920f9f4954d06930a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Misty=20De=20M=C3=A9o?= Date: Fri, 18 Jul 2025 15:57:48 -0700 Subject: [PATCH] ci: skip manpage generation This should speed up dependency installs. --- .github/workflows/setup/action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/setup/action.yml b/.github/workflows/setup/action.yml index a0203f0..940c65b 100644 --- a/.github/workflows/setup/action.yml +++ b/.github/workflows/setup/action.yml @@ -15,6 +15,11 @@ runs: - name: Set up rethinkdb run: | + # We don't need manpages in CI, and they take a significant amount + # of time to generate + echo "set man-db/auto-update false" | sudo debconf-communicate + sudo dpkg-reconfigure man-db + wget -qO- https://download.rethinkdb.com/repository/raw/pubkey.gpg | sudo gpg --dearmor -o /usr/share/keyrings/rethinkdb-archive-keyrings.gpg echo "deb [signed-by=/usr/share/keyrings/rethinkdb-archive-keyrings.gpg] https://download.rethinkdb.com/repository/ubuntu-$(lsb_release -cs) $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list sudo apt-get update