mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-04 07:21:14 -03:00
ci: update before apt install
GitHub does not consistently provide images with up-to-date package lists, causing `apt install` failures. Work around this by updating the package list. https://github.com/actions/runner-images/issues/13636 https://github.com/actions/runner-images/issues/12599 Closes #12418
This commit is contained in:
committed by
Johannes Altmanninger
parent
232e38f105
commit
7d754b2865
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
@@ -55,6 +55,12 @@ jobs:
|
|||||||
include_sphinx: false
|
include_sphinx: false
|
||||||
- name: Install g++-multilib
|
- name: Install g++-multilib
|
||||||
run: |
|
run: |
|
||||||
|
# GitHub does not consistently provide images with up-to-date package lists, causing
|
||||||
|
# `apt install` failures.
|
||||||
|
# Work around this by updating the package list.
|
||||||
|
# https://github.com/actions/runner-images/issues/13636
|
||||||
|
# https://github.com/actions/runner-images/issues/12599
|
||||||
|
sudo apt-get update
|
||||||
sudo apt install g++-multilib
|
sudo apt install g++-multilib
|
||||||
- name: cmake
|
- name: cmake
|
||||||
env:
|
env:
|
||||||
|
|||||||
Reference in New Issue
Block a user