-
Notifications
You must be signed in to change notification settings - Fork 21
208 lines (176 loc) · 6.9 KB
/
build.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
name: CI
on:
push:
branches: [ main ]
pull_request:
pull_request_target:
jobs:
format:
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork || github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.fork}}
runs-on: ubuntu-22.04
steps:
- name: Checkout PR
if: ${{ github.event_name == 'pull_request' || github.event_name == 'pull_request_target'}}
uses: actions/checkout@master
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@master
- name: Install tools
run: |
sudo apt update && sudo apt install clang-format-13
- name: Check formatting
run: |
make check_format
build-gba:
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork || github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.fork}}
runs-on: ubuntu-22.04
name: Build GBA
steps:
- name: Checkout PR
if: ${{ github.event_name == 'pull_request' || github.event_name == 'pull_request_target'}}
uses: actions/checkout@master
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@master
- name: Checkout gh-pages
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@master
with:
path: gh-pages
ref: gh-pages
- name: Checkout agbcc
uses: actions/checkout@master
with:
path: agbcc
repository: SAT-R/agbcc
- name: Install tools
run: |
sudo apt update && sudo apt install gcc-arm-none-eabi binutils-arm-none-eabi xorg-dev
python3 -m pip install gitpython
# build-essential, git, and libpng-dev are already installed
# gcc-arm-none-eabi is only needed for the modern build
# as an alternative to dkP
- name: Install agbcc
run: |
./build.sh
./install.sh ../
working-directory: agbcc
- name: Compare
run: make -j${nproc}
- name: Progress
run: |
python3 scripts/progress.py text
- name: Generate reports
if: ${{ github.event_name == 'push' }}
run: |
mkdir -p gh-pages/reports
mkdir -p gh-pages/maps
python3 scripts/progress.py csv >> gh-pages/reports/progress-sa2-nonmatching.csv
python3 scripts/progress.py csv -m >> gh-pages/reports/progress-sa2-matching.csv
python3 scripts/progress.py shield-json > gh-pages/reports/progress-sa2-shield.json
python3 scripts/progress.py shield-json -m > gh-pages/reports/progress-sa2-shield-matching.json
echo "REPORTS_COMMIT_MSG=$( git log --format=%s ${GITHUB_SHA} )" >> $GITHUB_ENV
cp sa2.map gh-pages/maps/${GITHUB_SHA}.map
#- name: Japan
#run: |
#make clean
#make japan -j${nproc}
- name: Europe
run: |
make clean
make europe -j${nproc}
- name: Update reports
if: ${{ github.event_name == 'push' }}
uses: EndBug/add-and-commit@v7
with:
branch: gh-pages
cwd: "./gh-pages"
add: "reports maps"
message: ${{ env.REPORTS_COMMIT_MSG }}
ports:
strategy:
matrix:
platform: ["sdl", "sdl_win32", "win32"]
os: ["ubuntu-22.04", "macos-15"]
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork || github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.fork}}
runs-on: ${{ matrix.os }}
name: Build ${{ matrix.platform }} (${{ matrix.os }})
steps:
- name: Checkout PR
if: ${{ github.event_name == 'pull_request' || github.event_name == 'pull_request_target'}}
uses: actions/checkout@master
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@master
- name: Install tools (Linux)
if: ${{ matrix.os == 'ubuntu-22.04' }}
run: |
sudo apt update && sudo apt install xorg-dev libsdl2-dev gcc-mingw-w64 libarchive-tools
- name: Install Tools (Macos)
if: ${{ matrix.os == 'macos-15' }}
run: |
brew install libpng sdl2 mingw-w64 arm-none-eabi-gcc
- name: Install SDL for win32
if: ${{ matrix.platform == 'sdl_win32' }}
run: |
make SDL2.dll
- name: ${{ matrix.platform }}
run: |
make -j${nproc} ${{ matrix.platform }}
test:
strategy:
matrix:
platform: ["sdl"]
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork || github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.fork}}
runs-on: ubuntu-22.04
name: TAS Test ${{ matrix.platform }}
steps:
- name: Checkout PR
if: ${{ github.event_name == 'pull_request' || github.event_name == 'pull_request_target'}}
uses: actions/checkout@master
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@master
- name: Install tools
run: |
sudo apt update && sudo apt install xorg-dev libsdl2-dev gcc-mingw-w64 libarchive-tools
- name: Install SDL for win32
if: ${{ matrix.platform == 'sdl_win32' }}
run: |
make SDL2.dll
- name: Build ${{ matrix.platform }}
run: |
make -j${nproc} ${{ matrix.platform }} TAS_TESTING=1
- name: Run TAS
timeout-minutes: 1
env:
HEADLESS: true
run: |
./sa2.${{ matrix.platform }}
level_editor:
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork || github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.fork}}
runs-on: ubuntu-22.04
name: Level editor (BriBaSA)
steps:
- name: Checkout PR
if: ${{ github.event_name == 'pull_request' || github.event_name == 'pull_request_target'}}
uses: actions/checkout@master
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@master
- name: Install deps
run: |
sudo apt update && sudo apt install xorg-dev libsdl2-dev
- name: Build
run: |
make -j${nproc} bribasa