Skip to content

Commit

Permalink
ci: back to previous platform builds
Browse files Browse the repository at this point in the history
  • Loading branch information
b-ma committed Dec 24, 2024
1 parent fb59e94 commit 068c149
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/matrix-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ jobs:
target: aarch64-apple-darwin
command: cargo

- name: darwin-x64
runner: macos-latest
target: x86_64-apple-darwin
command: cargo

- name: win32-arm64-msvc
runner: windows-latest
target: aarch64-pc-windows-msvc
command: cargo

- name: win32-x64-msvc
runner: windows-latest
target: x86_64-pc-windows-msvc
Expand All @@ -39,6 +49,11 @@ jobs:
target: aarch64-unknown-linux-gnu
command: cross

- name: linux-x86-gnu
runner: ubuntu-latest
target: x86_64-unknown-linux-gnu
command: cross

- name: linux-arm-gnueabihf
runner: ubuntu-latest
target: armv7-unknown-linux-gnueabihf
Expand Down
6 changes: 6 additions & 0 deletions Cross.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@ pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get --assume-yes install libasound2-dev:$CROSS_DEB_ARCH libjack-jackd2-dev:$CROSS_DEB_ARCH"
]

[target.x86_64-unknown-linux-gnu]
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get --assume-yes install libasound2-dev:$CROSS_DEB_ARCH libjack-jackd2-dev:$CROSS_DEB_ARCH"
]

0 comments on commit 068c149

Please sign in to comment.