Skip to content

Commit

Permalink
ci: execute "apt update" before the first "apt install"
Browse files Browse the repository at this point in the history
Apparently, the base image of the Github CI runner is not updated very often,
and it does not keep up with the evolving list of mirrors.

The "apt update" was not there on purpose, but but maybe it is more pragmatic to
just add it, otherwise the CI would start to fail due to random 404s when
installing packages.
  • Loading branch information
muxator authored and muxator committed Nov 21, 2023
1 parent f318aab commit b6e7975
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test-itcoin-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
steps:
- name: Install the build toolchain (gcc-12)
run: |
sudo apt update && \
sudo apt install --no-install-recommends -y \
autoconf \
automake \
Expand Down

0 comments on commit b6e7975

Please sign in to comment.