forked from nesbox/TIC-80
-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (59 loc) · 2.12 KB
/
build-linux-arm64.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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