Skip to content

Commit 489757a

Browse files
committed
fix ubuntu being unable to fetch gcc
1 parent f4daff0 commit 489757a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,10 @@ jobs:
6767
if: runner.os == 'Linux'
6868
run: |
6969
sudo apt-get update
70-
sudo apt-get install -y gcc-multilib gcc-aarch64-linux-gnu
70+
sudo apt-get install -y software-properties-common
71+
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
72+
sudo apt-get update
73+
sudo apt-get install -y gcc-13 gcc-13-aarch64-linux-gnu
7174
- run: cargo build --release --target ${{ matrix.rust-target }}
7275
- name: Run Tests
7376
if: matrix.rust-target != 'aarch64-pc-windows-msvc'

0 commit comments

Comments
 (0)