Skip to content

Commit

Permalink
Add linux/arm64 builds with separate self-hosted runners
Browse files Browse the repository at this point in the history
  • Loading branch information
aliceisjustplaying authored and actions-user committed Oct 7, 2024
1 parent 1fc598a commit dacdbf2
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 1 deletion.
70 changes: 70 additions & 0 deletions .github/workflows/build-linux-arm64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: Build linux/arm64

on:
push:
pull_request:
schedule:
- cron: '15 6 * * *'

env:
BUILD_TYPE: MinSizeRel

jobs:
# === Linux arm64 ===
linux-arm64:
runs-on: linux-arm64-alice
container: dtcooper/raspberrypi-os:bookworm
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name

steps:
- name: Install Host toolchain
run: |
apt update
apt -y install cmake build-essential git doxygen libglu1-mesa-dev freeglut3-dev libpipewire-0.3-dev libwayland-dev libsdl2-dev ruby-dev libcurl4-openssl-dev
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- name: Build
run: |
cd build
# this is a self-hosted runner issue
# fixes "fatal: detected dubious ownership in repository"
git config --global --add safe.directory '*'
cmake -DCMAKE_BUILD_TYPE=MinSizeRel -DBUILD_SDLGPU=On -DBUILD_WITH_ALL=ON ..
cmake --build . --config MinSizeRel --parallel 1
- name: Deploy
uses: actions/upload-artifact@v4
with:
name: "tic80-linux-arm64"
path: |
build/bin/tic80
build/bin/*.so
# === Linux PRO arm64 ===
linux-arm64-pro:
runs-on: linux-arm64-alice
container: dtcooper/raspberrypi-os:bookworm

steps:
- name: Install Host toolchain
run: |
apt update
apt -y install cmake build-essential git doxygen libglu1-mesa-dev freeglut3-dev libpipewire-0.3-dev libwayland-dev libsdl2-dev ruby-dev libcurl4-openssl-dev
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- name: Build
run: |
cd build
# this is a self-hosted runner issue
# fixes "fatal: detected dubious ownership in repository"
git config --global --add safe.directory '*'
cmake -DCMAKE_BUILD_TYPE=MinSizeRel -DBUILD_PRO=On -DBUILD_SDLGPU=On -DBUILD_WITH_ALL=ON ..
cmake --build . --config MinSizeRel --parallel 1
2 changes: 1 addition & 1 deletion .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Sync with upstream

on:
schedule:
- cron: '0 * * * *'
- cron: '0 6 * * *'

jobs:
sync:
Expand Down

0 comments on commit dacdbf2

Please sign in to comment.