ci: try making sure musl-gcc is available since it seems to be required

This commit is contained in:
J / Jacob Babich
2024-10-07 00:54:19 -04:00
parent 0849726ef6
commit 44d8066d8c
2 changed files with 8 additions and 6 deletions

View File

@@ -52,18 +52,19 @@ jobs:
- runner: macos-latest
target: x86_64-apple-darwin
- install_prerequisite: sudo apt-get update && sudo apt-get install gcc-aarch64-linux-gnu
- install_prerequisite: sudo apt-get update && sudo apt-get install musl-tools gcc-aarch64-linux-gnu
runner: ubuntu-latest
target: aarch64-unknown-linux-gnu
- install_prerequisite: sudo apt-get update && sudo apt-get install gcc-aarch64-linux-gnu
- install_prerequisite: sudo apt-get update && sudo apt-get install musl-tools gcc-aarch64-linux-gnu
runner: ubuntu-latest
target: aarch64-unknown-linux-musl
- runner: ubuntu-latest
target: x86_64-unknown-linux-gnu
- runner: ubuntu-latest
- install_prerequisite: sudo apt-get update && sudo apt-get install musl-tools
runner: ubuntu-latest
target: x86_64-unknown-linux-musl
# I would like to support this but I don't know how to install the dependencies to be able to

View File

@@ -18,18 +18,19 @@ jobs:
- runner: macos-latest
target: x86_64-apple-darwin
- install_prerequisite: sudo apt-get update && sudo apt-get install gcc-aarch64-linux-gnu
- install_prerequisite: sudo apt-get update && sudo apt-get install musl-tools gcc-aarch64-linux-gnu
runner: ubuntu-latest
target: aarch64-unknown-linux-gnu
- install_prerequisite: sudo apt-get update && sudo apt-get install gcc-aarch64-linux-gnu
- install_prerequisite: sudo apt-get update && sudo apt-get install musl-tools gcc-aarch64-linux-gnu
runner: ubuntu-latest
target: aarch64-unknown-linux-musl
- runner: ubuntu-latest
target: x86_64-unknown-linux-gnu
- runner: ubuntu-latest
- install_prerequisite: sudo apt-get update && sudo apt-get install musl-tools
runner: ubuntu-latest
target: x86_64-unknown-linux-musl
# I would like to support this but I don't know how to install the dependencies to be able to