Skip to content

Commit

Permalink
Replace apt-fast with apt-get (#89)
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 authored Oct 15, 2024
1 parent f1f8869 commit cacfdc1
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 @@ -68,10 +68,10 @@ 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 libpcre3-dev:i386
libssl-dev:i386
mkdir -p external/bin
cat << EOF > external/bin/gcc
#!/bin/bash
Expand Down

0 comments on commit cacfdc1

Please sign in to comment.