summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJimmy <jimmy@spalge.com>2022-03-17 20:53:34 +1300
committerJimmy <jimmy@spalge.com>2022-03-17 20:53:34 +1300
commit4c745a298ae199f51816ef4cd25c5a39eb969487 (patch)
tree690b0fc100b5d37d60b66b58e9f8a9e1b992cbdf
parent77ca56666c6a9568f7081014964ff119a82ae0e5 (diff)
downloadqutebrowser-4c745a298ae199f51816ef4cd25c5a39eb969487.tar.gz
qutebrowser-4c745a298ae199f51816ef4cd25c5a39eb969487.zip
ci: update package list before installing asciidoc
On the last two runs we've been getting errors install lxml2-utils (a dependency of asciidoc) because the version in the packages list isn't available anymore. A new point build has been pushed. The base image will be updated eventually but [the docs][] say to run apt update before installing. That is already done once in this file too. Yay for longer build times. Last two runs: https://github.com/qutebrowser/qutebrowser/runs/5578546699?check_suite_focus=true https://github.com/qutebrowser/qutebrowser/runs/5581525862?check_suite_focus=true [the docs]: https://docs.github.com/en/actions/using-github-hosted-runners/customizing-github-hosted-runners#installing-software-on-ubuntu-runners
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e50ba2c60..c8349877e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -53,7 +53,7 @@ jobs:
- name: Install dependencies
run: |
[[ ${{ matrix.testenv }} == eslint ]] && npm install -g eslint
- [[ ${{ matrix.testenv }} == docs ]] && sudo apt-get install --no-install-recommends asciidoc
+ [[ ${{ matrix.testenv }} == docs ]] && sudo apt-get update && sudo apt-get install --no-install-recommends asciidoc
if [[ ${{ matrix.testenv }} == shellcheck ]]; then
scversion="stable"
bindir="$HOME/.local/bin"