Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/aot-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
# Only test on Mac and Ubuntu – these are the fastest platforms.
# Windows and Linux ARM are built later after the PR is merged.
os: [macos-14, ubuntu-22.04]
os: [macos-14, ubuntu-22.04, windows-11-arm]
steps:
- uses: actions/checkout@v4

Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-14, windows-2022, ubuntu-22.04, ubuntu-22.04-arm]
os:
- macos-14
- windows-2022
- windows-11-arm
- ubuntu-22.04
- ubuntu-22.04-arm
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -76,13 +81,15 @@ jobs:
mv jelly-cli-ubuntu-22.04/jelly-cli jelly-cli-linux-x86_64
mv jelly-cli-ubuntu-22.04-arm/jelly-cli jelly-cli-linux-arm64
mv jelly-cli-windows-2022/jelly-cli.exe jelly-cli-windows-x86_64.exe
mv jelly-cli-windows-11-arm/jelly-cli.exe jelly-cli-windows-arm64.exe

- name: Create gzipped versions
run: |
gzip -9 -k jelly-cli-mac-arm64 &
gzip -9 -k jelly-cli-linux-x86_64 &
gzip -9 -k jelly-cli-linux-arm64 &
gzip -9 -k jelly-cli-windows-x86_64.exe &
gzip -9 -k jelly-cli-windows-arm64.exe &
wait

- name: Upload binaries (pre-release)
Expand Down
Loading