Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-tennert committed Oct 20, 2023
1 parent 0040b80 commit 35da0af
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-gnu

- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'

- name: install dependencies
run: |
sudo apt-get update; sudo apt-get install pkg-config libx11-dev libasound2-dev libudev-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev
Expand Down Expand Up @@ -176,6 +183,12 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-apple-darwin

- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Environment Setup
run: |
export CFLAGS="-fno-stack-check"
Expand Down Expand Up @@ -220,6 +233,12 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-apple-darwin

- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Environment
# macOS 11 was the first version to support ARM
run: |
Expand Down

0 comments on commit 35da0af

Please sign in to comment.