-
Notifications
You must be signed in to change notification settings - Fork 7
43 lines (37 loc) · 888 Bytes
/
ci.yml
File metadata and controls
43 lines (37 loc) · 888 Bytes
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
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
validate:
name: Validate Sources
runs-on: ubuntu-24.04-arm
timeout-minutes: 90
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install host dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
make \
python3 \
qemu-system-arm \
qemu-utils \
libsdl2-dev \
libsdl2-image-dev \
libsdl2-mixer-dev \
libsdl2-ttf-dev
- name: Show platform
run: |
uname -a
docker --version
qemu-system-aarch64 --version
- name: Validate release gate
run: ./scripts/validate-release.sh