File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments