Skip to content

Commit

Permalink
ci: add Linux/AArch64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
asiekierka committed Jan 18, 2025
1 parent b2fd7a1 commit fbf027e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,24 @@ jobs:
name: Zeta (Linux)
path: dist/*

build_linux_aarch64:
runs-on: ubuntu-22.04-arm
steps:
- uses: actions/checkout@v3
- name: Update Ubuntu packages
run: sudo apt-get update
- name: Set up Ubuntu packages
run: sudo apt-get install -y git zip libsdl2-dev && pip install Pillow
- name: Build
run: make PLATFORM=unix-sdl
- name: Package artifact
run: mkdir dist && cp LICENSE build/unix-sdl/zeta86 dist/
- name: Archive artifact
uses: actions/upload-artifact@v3
with:
name: Zeta (Linux, AArch64)
path: dist/*

build_macos:
runs-on: macos-latest
steps:
Expand Down

0 comments on commit fbf027e

Please sign in to comment.