-
Notifications
You must be signed in to change notification settings - Fork 80
116 lines (114 loc) · 5.08 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
name: build_and_test
on: [push, pull_request]
jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: win64-vstudio-debug
run: python3 fips build win64-vstudio-debug
- name: win64-vstudio-release
run: python3 fips build win64-vstudio-release
- name: d3d11-win64-vstudio-debug
run: python3 fips build d3d11-win64-vstudio-debug
- name: d3d11-win64-vstudio-release
run: python3 fips build d3d11-win64-vstudio-release
- name: sapp-win64-vstudio-debug
run: python3 fips build sapp-win64-vstudio-debug
- name: sapp-win64-vstudio-release
run: python3 fips build sapp-win64-vstudio-release
- name: sapp-d3d11-win64-vstudio-debug
run: python3 fips build sapp-d3d11-win64-vstudio-debug
- name: sapp-d3d11-win64-vstudio-release
run: python3 fips build sapp-d3d11-win64-vstudio-release
mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: osx-make-debug
run: python3 fips build osx-make-debug
- name: osx-make-release
run: python3 fips build osx-make-release
- name: metal-osx-make-debug
run: python3 fips build metal-osx-make-debug
- name: metal-osx-make-release
run: python3 fips build metal-osx-make-release
- name: sapp-metal-osx-make-debug
run: python3 fips build sapp-metal-osx-make-debug
- name: sapp-metal-osx-make-release
run: python3 fips build sapp-metal-osx-make-release
ios:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: ios-xcode-debug
run: python3 fips build ios-xcode-debug -- CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
- name: ios-xcode-release
run: python3 fips build ios-xcode-release -- CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
- name: metal-ios-xcode-debug
run: python3 fips build metal-ios-xcode-debug -- CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
- name: metal-ios-xcode-release
run: python3 fips build metal-ios-xcode-release -- CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
- name: sapp-ios-xcode-debug
run: python3 fips build sapp-ios-xcode-debug -- CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
- name: sapp-metal-ios-xcode-release
run: python3 fips build sapp-metal-ios-xcode-debug -- CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: prepare
run: |
sudo apt-get update
sudo apt-get install libgl1-mesa-dev libegl1-mesa-dev mesa-common-dev xorg-dev libasound-dev
cmake --version
- name: linux-make-debug
run: python3 fips build linux-make-debug
- name: linux-make-release
run: python3 fips build linux-make-release
- name: sapp-linux-make-debug
run: python3 fips build sapp-linux-make-debug
- name: sapp-linux-make-release
run: python3 fips build sapp-linux-make-release
- name: sapp-egl-gl-linux-make-debug
run: python3 fips build sapp-egl-gl-linux-make-debug
- name: sapp-egl-gl-linux-make-release
run: python3 fips build sapp-egl-gl-linux-make-release
- name: sapp-egl-gles3-linux-make-debug
run: python3 fips build sapp-egl-gles3-linux-make-debug
- name: sapp-egl-gles3-linux-make-release
run: python3 fips build sapp-egl-gles3-linux-make-release
emscripten:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: prepare
run: |
sudo apt-get install ninja-build
python3 fips emsdk install latest
- name: sapp-webgl2-wasm-ninja-debug
run: python3 fips build sapp-webgl2-wasm-ninja-debug
- name: sapp-webgl2-wasm-ninja-release
run: python3 fips build sapp-webgl2-wasm-ninja-release
- name: webgl2-wasm-ninja-debug
run: python3 fips build webgl2-wasm-ninja-debug
- name: webgl2-wasm-ninja-release
run: python3 fips build webgl2-wasm-ninja-release
android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v1
with:
java-version: '8'
- name: prepare
run: |
yes | python3 fips setup android
- name: sapp-android-make-debug
run: python3 fips build sapp-android-make-debug
- name: sapp-android-make-release
run: python3 fips build sapp-android-make-release
- name: sapp-android-sles-make-debug
run: python3 fips build sapp-android-sles-make-debug
- name: sapp-android-sles-make-release
run: python3 fips build sapp-android-sles-make-release