Skip to content

Commit 8e21605

Browse files
committed
Fix
1 parent 124f342 commit 8e21605

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,10 @@ jobs:
106106
# https://github.com/ocaml/setup-ocaml/blob/2f57267f071bc8547dfcb9433ff21d44fffef190/packages/setup-ocaml/src/unix.ts#L48
107107
# plus OPAM wants cmake
108108
sudo apt-get update
109-
sudo apt-get install -y bubblewrap g++-multilib gcc-multilib musl-tools rsync cmake
109+
sudo apt-get install -y bubblewrap musl-tools rsync cmake
110+
if [[ "$(uname -m)" == "x86_64" ]]; then
111+
sudo apt-get install -y g++-multilib gcc-multilib
112+
fi
110113
111114
- name: Restore rewatch build cache
112115
id: rewatch-build-cache

.github/workflows/coverage.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ jobs:
4242
- name: Install system dependencies
4343
run: |
4444
sudo apt-get update
45-
sudo apt-get install -y bubblewrap g++-multilib gcc-multilib musl-tools rsync cmake
45+
sudo apt-get install -y bubblewrap musl-tools rsync cmake
46+
if [[ "$(uname -m)" == "x86_64" ]]; then
47+
sudo apt-get install -y g++-multilib gcc-multilib
48+
fi
4649
4750
# --- rewatch build cache ---------------------------------------------
4851
# `make coverage` shells out to `make` which builds rewatch; cache the

0 commit comments

Comments
 (0)