Skip to content

Commit

Permalink
Replace apt-fast with apt-get
Browse files Browse the repository at this point in the history
`apt-fast` was removed from GitHub with Ubuntu 24.04:

- actions/runner-images#10003

For compatibility, switch back to `apt-get`.
  • Loading branch information
etan-status committed Oct 15, 2024
1 parent c04576d commit 7c4108a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ jobs:
if: runner.os == 'Linux' && matrix.target.cpu == 'i386'
run: |
sudo dpkg --add-architecture i386
sudo apt-fast update -qq
sudo DEBIAN_FRONTEND='noninteractive' apt-fast install \
sudo apt-get update -qq
sudo DEBIAN_FRONTEND='noninteractive' apt-get install \
--no-install-recommends -yq gcc-multilib g++-multilib \
libssl-dev:i386
mkdir -p external/bin
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
run: |
# Add GCC-14 to alternatives
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 14
# Set GCC-14 as the default
sudo update-alternatives --set gcc /usr/bin/gcc-14
Expand Down

0 comments on commit 7c4108a

Please sign in to comment.