Skip to content

Commit 0063fbd

Browse files
authored
Update arm-linux.yml
1 parent b026dbe commit 0063fbd

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/arm-linux.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,19 @@ jobs:
1818

1919
- name: Enable Multi Arch Support
2020
run: |
21+
sudo tee /etc/apt/sources.list.d/multi-arch.list << EOL
22+
deb http://archive.ubuntu.com/ubuntu $(lsb_release -cs) main restricted
23+
deb http://archive.ubuntu.com/ubuntu $(lsb_release -cs)-updates main restricted
24+
deb [arch=armhf,arm64] http://ports.ubuntu.com/ubuntu-ports $(lsb_release -cs) main restricted
25+
deb [arch=armhf,arm64] http://ports.ubuntu.com/ubuntu-ports $(lsb_release -cs)-updates main restricted
26+
deb [arch=armhf,arm64] http://ports.ubuntu.com/ubuntu-ports $(lsb_release -cs)-security main restricted
27+
EOL
28+
29+
30+
2131
sudo dpkg --add-architecture armhf # for ARM32
2232
sudo dpkg --add-architecture arm64 # for ARM64
23-
sudo apt-get update
33+
sudo apt-get update --fix-missing
2434
- name: Install ARM Freetype
2535
run: |
2636
if [ "${{ matrix.arch }}" = "arm32" ]; then

0 commit comments

Comments
 (0)