-
Notifications
You must be signed in to change notification settings - Fork 26
93 lines (80 loc) · 2.55 KB
/
build-tests.yaml
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
name: Build and Test
on:
push:
branches-ignore:
- 'master'
paths-ignore:
- 'README*.md'
jobs:
linux:
name: "Linux build"
runs-on: ubuntu-latest
env:
PREFIX: "/usr"
PY3PATH: ""
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo add-apt-repository -y ppa:dciabrin/ngdevkit
sudo apt-get update -y
sudo apt-get install -y ngdevkit-toolchain python3 zip pkg-config
- name: Build ngdevkit
run: ./.github/scripts/build.sh
- name: Install dependencies for ngdevkit-examples
run: >
sudo apt-get install -y python3-yaml ngdevkit-gngeo python3-pygame imagemagick
sox libsox-fmt-mp3 libglew-dev libsdl2-dev
- name: Test by compiling ngdevkit-examples
run: ./.github/scripts/test.sh
win:
name: "Windows native MSYS2 build"
runs-on: windows-latest
env:
PY3PATH: ""
defaults:
run:
shell: msys2 {0}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install MSYS2
uses: msys2/setup-msys2@v2
with:
msystem: UCRT64
update: true
install:
git autoconf automake make zip
mingw-w64-ucrt-x86_64-pkg-config mingw-w64-ucrt-x86_64-python
mingw-w64-ucrt-x86_64-python-pygame
- name: Install ngdevkit dependencies
run: |
echo -e "[ngdevkit]\nSigLevel = Optional TrustAll\nServer = https://dciabrin.net/msys2-ngdevkit/\$arch" >> /etc/pacman.conf
pacman -Sy
pacman -S --disable-download-timeout --noconfirm mingw-w64-ucrt-x86_64-ngdevkit-toolchain
- name: Build
run: ./.github/scripts/build-msys2.sh
macos:
name: "macOS build"
runs-on: macos-13
env:
PREFIX: "/usr/local"
PY3PATH: "/usr/local/opt/python3/bin"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Dependencies
run: |
brew tap dciabrin/ngdevkit
brew install python3 --overwrite
brew install automake ngdevkit-toolchain zip pkg-config
$(brew --prefix python)/libexec/bin/pip install pygame --break-system-packages
- name: Build
run: ./.github/scripts/build.sh
- name: Install dependencies for ngdevkit-examples
run: brew install pyyaml ngdevkit-gngeo imagemagick sox glew sdl2 sdl2_image
- name: Test by compiling ngdevkit-examples
run: ./.github/scripts/test.sh