diff options
| -rw-r--r-- | .github/workflows/semifold-ci.yaml | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/.github/workflows/semifold-ci.yaml b/.github/workflows/semifold-ci.yaml index 098eec5..7df6403 100644 --- a/.github/workflows/semifold-ci.yaml +++ b/.github/workflows/semifold-ci.yaml @@ -19,22 +19,37 @@ jobs: fail-fast: false matrix: include: + # Linux - platform: "ubuntu-22.04" - name: "Linux x86_64" + name: "Linux x86_64 (GNU)" target: "x86_64-unknown-linux-gnu" args: "--target x86_64-unknown-linux-gnu" + - os: ubuntu-latest + name: "Linux x86_64 (Musl)" + target: "x86_64-unknown-linux-musl" + args: "--target x86_64-unknown-linux-musl" - platform: "ubuntu-24.04-arm" name: "Linux arm64" target: "aarch64-unknown-linux-gnu" args: "--target aarch64-unknown-linux-gnu" + # macOS + - platform: "macos-latest" + name: "macOS x86_64" + target: "x86_64-apple-darwin" + args: "--target x86_64-apple-darwin" - platform: "macos-latest" name: "macOS arm64" target: "aarch64-apple-darwin" args: "--target aarch64-apple-darwin" + # Windows - platform: "windows-latest" - name: "Windows x86_64" + name: "Windows x86_64 (MSVC)" target: "x86_64-pc-windows-msvc" args: "--target x86_64-pc-windows-msvc" + - platform: "windows-latest" + name: "Windows x86_64 (GNU)" + target: "x86_64-pc-windows-gnu" + args: "--target x86_64-pc-windows-gnu" - platform: "windows-11-arm" name: "Windows arm64" target: "aarch64-pc-windows-msvc" |