Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/aot-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-14, windows-2022, ubuntu-24.04, ubuntu-24.04-arm]
os: [macos-14, windows-2019, ubuntu-22.04, ubuntu-22.04-arm]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -42,9 +42,9 @@ jobs:
- name: Rename binaries
run: |
mv jelly-cli-macos-14/jelly-cli jelly-cli-mac-arm64
mv jelly-cli-ubuntu-24.04/jelly-cli jelly-cli-linux-x86_64
mv jelly-cli-ubuntu-24.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-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-2019/jelly-cli.exe jelly-cli-windows-x86_64.exe

- name: Upload binaries (pre-release)
if: github.ref == 'refs/heads/main'
Expand Down
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-24.04]
os: [macos-14, ubuntu-22.04]
steps:
- uses: actions/checkout@v4

Expand Down
Loading