mirror of
https://github.com/hannobraun/Fornjot
synced 2025-02-25 16:45:52 +00:00
Merge pull request #370 from hendrikmaus/remove-musl-targets
fix(cd): avoid building musl
This commit is contained in:
commit
4903c06817
19
.github/workflows/cd.yml
vendored
19
.github/workflows/cd.yml
vendored
@ -17,20 +17,10 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
# Supported `cross` targets:
|
- { target: x86_64-unknown-linux-gnu, os: ubuntu-latest }
|
||||||
# https://github.com/rust-embedded/cross#supported-targets
|
- { target: x86_64-apple-darwin, os: macOS-latest }
|
||||||
|
- { target: aarch64-apple-darwin, os: macOS-latest }
|
||||||
# Linux targets
|
- { target: x86_64-pc-windows-msvc, os: windows-latest }
|
||||||
- { target: x86_64-unknown-linux-gnu, os: ubuntu-latest, cross: false }
|
|
||||||
- { target: x86_64-unknown-linux-musl, os: ubuntu-latest, cross: true }
|
|
||||||
- { target: aarch64-unknown-linux-musl, os: ubuntu-latest, cross: true }
|
|
||||||
|
|
||||||
# macOS targets
|
|
||||||
- { target: x86_64-apple-darwin, os: macOS-latest, cross: false }
|
|
||||||
- { target: aarch64-apple-darwin, os: macOS-latest, cross: false }
|
|
||||||
|
|
||||||
# Windows targets
|
|
||||||
- { target: x86_64-pc-windows-msvc, os: windows-latest, cross: false }
|
|
||||||
|
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
steps:
|
steps:
|
||||||
@ -53,7 +43,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
args: --release --target ${{ matrix.target }}
|
args: --release --target ${{ matrix.target }}
|
||||||
command: build
|
command: build
|
||||||
use-cross: ${{ matrix.cross }}
|
|
||||||
|
|
||||||
- name: Prepare Upload
|
- name: Prepare Upload
|
||||||
shell: bash
|
shell: bash
|
||||||
|
Loading…
Reference in New Issue
Block a user