-
Notifications
You must be signed in to change notification settings - Fork 22
109 lines (96 loc) · 3.21 KB
/
Copy pathbuild.yml
File metadata and controls
109 lines (96 loc) · 3.21 KB
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
name: Build
on:
push:
pull_request:
jobs:
build:
container: ghcr.io/doldecomp/mkdd-build:main
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [MarioClub_us]
steps:
# Checkout the repository
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
# Set Git config
- name: Git config
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
# Determine which .cpp files changed (PR: vs base branch; push: vs prev commit)
- name: Changed .cpp files
run: |
if [ "${{ github.event_name }}" = "pull_request" ]; then
base="${{ github.event.pull_request.base.sha }}"
else
base="${{ github.event.before }}"
fi
if [ -z "$base" ] \
|| [ "$base" = "0000000000000000000000000000000000000000" ] \
|| ! git rev-parse -q --verify "$base^{commit}" >/dev/null 2>&1; then
base="$(git rev-parse -q --verify HEAD~1 || true)"
fi
if [ -n "$base" ]; then
git diff --name-only --diff-filter=d "$base" HEAD -- '*.cpp' \
> changed_cpp.txt
else
: > changed_cpp.txt
fi
echo "Changed .cpp files:"; cat changed_cpp.txt
# Normalize file mod times
- name: Restore timestamps
run: |
uv run https://raw.githubusercontent.com/MestreLion/git-tools/refs/tags/v2022.12/git-restore-mtime \
--merge --commit-time
# Copy the original files to the workspace
- name: Prepare
run: cp -a /orig .
# Restore cached files
- name: Cache build
uses: actions/cache@v4
with:
path: |
build
.ninja_deps
.ninja_log
key: ${{ runner.os }}-${{ matrix.version }}-${{ github.sha }}
restore-keys: ${{ runner.os }}-${{ matrix.version }}-
# Build the project
- name: Build
run: |
python configure.py --map --version ${{ matrix.version }} \
--binutils /binutils --compilers /compilers
ninja all_source progress build/${{ matrix.version }}/report.json
# Upload map files
- name: Upload map
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.version }}_maps
path: build/${{ matrix.version }}/**/*.MAP
# Upload progress report
- name: Upload report
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.version }}_report
path: build/${{ matrix.version }}/report.json
# Validate map symbol presence/order/linkage for each changed .cpp
- name: Validate symbol order
run: |
if [ ! -s changed_cpp.txt ]; then
echo "No changed .cpp files; nothing to validate."
exit 0
fi
NM="$(command -v powerpc-eabi-nm || true)"
if [ -z "$NM" ]; then
NM="$(find /binutils -name powerpc-eabi-nm -type f 2>/dev/null | head -1)"
fi
if [ -z "$NM" ] || [ ! -x "$NM" ]; then
echo "::error:: powerpc-eabi-nm not found; cannot run symbol-order check."
exit 1
fi
export NM
echo "Using nm: $NM"
python tools/check-changed-symbol-order.py $(cat changed_cpp.txt)