Skip to content

Commit

Permalink
fix: Streamline build target names
Browse files Browse the repository at this point in the history
  • Loading branch information
hrkfdn committed Mar 4, 2024
1 parent bfda4ec commit 3b33020
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
container: ${{ matrix.container }}
strategy:
matrix:
build_target: [linux-x86_64, linux-arm64, linux-armhf, macos-x86_64, macos-aarch64, windows-x86_64]
include:
- build_target: linux-x86_64
os: ubuntu-latest
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,18 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
build_target: [linux, macos-x86_64, macos-aarch64, windows]
include:
- build_target: linux
- build_target: linux-x86_64
os: ubuntu-latest
artifact_suffix: linux-x86_64
target: x86_64-unknown-linux-gnu
features: ''
- build_target: macos-x86_64
os: macos-latest
artifact_suffix: macos-x86_64
target: x86_64-apple-darwin
features: '--no-default-features --features rodio_backend,pancurses_backend'
- build_target: macos-aarch64
os: macos-14
artifact_suffix: macos-aarch64
target: aarch64-apple-darwin
features: '--no-default-features --features rodio_backend,pancurses_backend'
- build_target: windows
- build_target: windows-x86_64
os: windows-latest
artifact_suffix: windows-x86_64
target: x86_64-pc-windows-msvc
Expand Down

0 comments on commit 3b33020

Please sign in to comment.