diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e75fe72f..b05bf7915 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,16 +17,22 @@ jobs: matrix: os: [ ubuntu-latest, macos-latest ] variant: - - { profile: release, target: x86_64-unknown-linux-musl, glibc: "default" } + #- { profile: release, target: x86_64-unknown-linux-musl, glibc: "default" } - { profile: release, target: x86_64-unknown-linux-gnu, glibc: "default" } - { profile: release, target: aarch64-apple-darwin, glibc: "default" } + - { profile: release, target: aarch64-unknown-linux-gnu, glibc: "default" } + #- { profile: release, target: aarch64-unknown-linux-musl, glibc: "default" } exclude: + - os: ubuntu-latest + variant: { profile: release, target: x86_64-apple-darwin, glibc: "default" } - os: macos-latest variant: { profile: release, target: x86_64-unknown-linux-gnu, glibc: "default" } - - os: ubuntu-latest - variant: { profile: release, target: aarch64-apple-darwin, glibc: "default" } - os: macos-latest variant: { profile: release, target: x86_64-unknown-linux-musl, glibc: "default" } + - os: macos-latest + variant: { profile: release, target: aarch64-unknown-linux-musl, glibc: "default" } + - os: macos-latest + variant: { profile: release, target: aarch64-unknown-linux-gnu, glibc: "default" } steps: - uses: actions/checkout@v4