Skip to content

Commit

Permalink
Merge pull request #370 from hendrikmaus/remove-musl-targets
Browse files Browse the repository at this point in the history
fix(cd): avoid building musl
  • Loading branch information
hannobraun authored Mar 17, 2022
2 parents 750a668 + 16dccb3 commit 4903c06
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,10 @@ jobs:
strategy:
matrix:
include:
# Supported `cross` targets:
# https://github.com/rust-embedded/cross#supported-targets

# Linux targets
- { 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 }
- { target: x86_64-unknown-linux-gnu, os: ubuntu-latest }
- { target: x86_64-apple-darwin, os: macOS-latest }
- { target: aarch64-apple-darwin, os: macOS-latest }
- { target: x86_64-pc-windows-msvc, os: windows-latest }

runs-on: ${{matrix.os}}
steps:
Expand All @@ -53,7 +43,6 @@ jobs:
with:
args: --release --target ${{ matrix.target }}
command: build
use-cross: ${{ matrix.cross }}

- name: Prepare Upload
shell: bash
Expand Down

0 comments on commit 4903c06

Please sign in to comment.