-
-
Notifications
You must be signed in to change notification settings - Fork 152
153 lines (134 loc) · 5.46 KB
/
build-debian-multiarch.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
# Tests pygame on more exotic architectures. This is not something that is
# actively supported, but source code support for this is nice to have. We
# don't do any releases from here.
name: Debian Multiarch
# Run CI only on changes to main branch, or any PR to main. Do not run CI on
# any other branch. Also, skip any non-source changes from running on CI
on:
push:
branches: main
paths-ignore:
- 'docs/**'
- 'examples/**'
- '.gitignore'
- '*.rst'
- '*.md'
- '.github/workflows/*.yml'
# re-include current file to not be excluded
- '!.github/workflows/build-debian-multiarch.yml'
pull_request:
branches: main
paths-ignore:
- 'docs/**'
- 'examples/**'
- '.gitignore'
- '*.rst'
- '*.md'
- '.github/workflows/*.yml'
# re-include current file to not be excluded
- '!.github/workflows/build-debian-multiarch.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-debian-multiarch
cancel-in-progress: true
# this command is called in two places, so save it in an env first
env:
INSTALL_CMD: |
apt-get update --fix-missing
apt-get upgrade -y
apt-get install build-essential meson cython3 -y
apt-get install libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev -y
apt-get install libfreetype6-dev libportmidi-dev fontconfig -y
apt-get install python3-dev python3-pip python3-wheel python3-sphinx -y
pip3 install meson-python --break-system-packages
jobs:
build-multiarch:
name: Debian (Bookworm - 12) [${{ matrix.arch }}]
runs-on: ubuntu-24.04
strategy:
fail-fast: false # if a particular matrix build fails, don't skip the rest
matrix:
# maybe more things could be added in here in the future (if needed)
include:
- { arch: s390x, base_image: '' }
- { arch: ppc64le, base_image: '' }
- { arch: armv6, base_image: '' }
# a custom base_image is specified in the armv7 case. This is done because
# the armv6 image is just raspbian in disguise. And the wheel built on armv7
# is going to be tested on armv6
- { arch: armv7, base_image: 'balenalib/raspberrypi3-debian:bookworm' }
steps:
- uses: actions/[email protected]
- name: Build sources and run tests
uses: uraimo/[email protected]
id: build
with:
arch: ${{ matrix.base_image && 'none' || matrix.arch }}
distro: ${{ matrix.base_image && 'none' || 'bookworm' }}
base_image: ${{ matrix.base_image }}
# Not required, but speeds up builds
githubToken: ${{ github.token }}
# Create an artifacts directory
setup: mkdir -p ~/artifacts
# Mount the artifacts directory as /artifacts in the container
dockerRunArgs: --volume ~/artifacts:/artifacts
# The shell to run commands with in the container
shell: /bin/sh
# Install some dependencies in the container. This speeds up builds if
# you are also using githubToken. Any dependencies installed here will
# be part of the container image that gets cached, so subsequent
# builds don't have to re-install them. The image layer is cached
# publicly in your project's package repository, so it is vital that
# no secrets are present in the container state or logs.
install: ${{ env.INSTALL_CMD }}
# Build a wheel, install it for running unit tests.
# --no-build-isolation is passed so that preinstalled meson-python can be used
# (done for optimization reasons)
run: |
echo "\nBuilding pygame wheel\n"
pip3 wheel . --no-build-isolation --wheel-dir /artifacts -vvv
echo "\nInstalling wheel\n"
pip3 install --no-index --pre --break-system-packages --find-links /artifacts pygame-ce
echo "\nRunning tests\n"
export SDL_VIDEODRIVER=dummy
export SDL_AUDIODRIVER=disk
python3 -m pygame.tests -v --exclude opengl,music,timing --time_out 300
# Upload the generated files under github actions assets section
- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: pygame-multiarch-${{ matrix.arch }}-dist
path: ~/artifacts/*.whl
# test wheels built on armv7 on armv6. Why?
# because piwheels expects the same armv7 wheel to work on both armv7 and armv6
test-armv7-on-armv6:
needs: build-multiarch
name: Debian (Bookworm - 12) [build - armv7, test - armv6]
runs-on: ubuntu-24.04
steps:
- name: Download all multiarch artifacts
uses: actions/download-artifact@v4
with:
name: pygame-multiarch-armv7-dist
path: ~/artifacts
- name: Rename arm wheel in artifacts
run: |
cd ~/artifacts
for f in *; do
mv "$f" "${f//armv7l/armv6l}"
done
- name: Test armv7 wheel on armv6
uses: uraimo/[email protected]
with:
arch: armv6
distro: bookworm
githubToken: ${{ github.token }}
dockerRunArgs: --volume ~/artifacts:/artifacts_new
shell: /bin/sh
install: ${{ env.INSTALL_CMD }}
run: |
echo "\nInstalling wheel\n"
pip3 install --no-index --pre --break-system-packages --find-links /artifacts_new pygame-ce
echo "\nRunning tests\n"
export SDL_VIDEODRIVER=dummy
export SDL_AUDIODRIVER=disk
python3 -m pygame.tests -v --exclude opengl,music,timing --time_out 300