forked from r-type/px68k-libretro
-
Notifications
You must be signed in to change notification settings - Fork 42
58 lines (55 loc) · 1.31 KB
/
ci.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
name: PX68K CI
on: [push, pull_request]
jobs:
linux-c68k:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build with c68k
run: make -j$(getconf _NPROCESSORS_ONLN) C68K=1
linux-musashi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build with musashi
run: make -j$(getconf _NPROCESSORS_ONLN) C68K=0
windows-c68k:
runs-on: windows-latest
steps:
- uses: msys2/setup-msys2@v2
with:
update: true
install: >-
base-devel
gcc
git
make
zip
mingw-w64-x86_64-toolchain
mingw-w64-x86_64-ntldd
mingw-w64-x86_64-zlib
mingw-w64-x86_64-pkg-config
- uses: actions/checkout@v4
- name: windows build with c68k
shell: msys2 {0}
run: make -j8 C68K=1
windows-musashi:
runs-on: windows-latest
steps:
- uses: msys2/setup-msys2@v2
with:
update: true
install: >-
base-devel
gcc
git
make
zip
mingw-w64-x86_64-toolchain
mingw-w64-x86_64-ntldd
mingw-w64-x86_64-zlib
mingw-w64-x86_64-pkg-config
- uses: actions/checkout@v4
- name: windows build with c68k
shell: msys2 {0}
run: make -j8 C68K=0