Skip to content

Commit

Permalink
Let's not use the windows build on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Aug 30, 2023
1 parent 06df7ba commit f482318
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,15 @@ jobs:
- name: Setup jextract
if: matrix.os != 'windows-latest'
run: |
curl -L https://download.java.net/java/early_access/jextract/1/openjdk-20-jextract+1-2_windows-x64_bin.tar.gz -o jextract.tar.gz
if [[ "${{ matrix.os }}" == "macos-latest" ]]; then
curl -L https://download.java.net/java/early_access/jextract/1/openjdk-20-jextract+1-2_macos-x64_bin.tar.gz -o jextract.tar.gz
else
curl -L https://download.java.net/java/early_access/jextract/1/openjdk-20-jextract+1-2_linux-x64_bin.tar.gz -o jextract.tar.gz
fi
tar xzvf jextract.tar.gz
echo $(realpath jextract-20\bin) >> GITHUB_PATH
realpath jextract-20\bin >> $GITHUB_PATH
- name: Setup MacOS signing
if: matrix.os == 'macos-latest'
env:
Expand Down

0 comments on commit f482318

Please sign in to comment.