-
Notifications
You must be signed in to change notification settings - Fork 6
203 lines (189 loc) · 5.66 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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
on:
push:
branches:
- main
- ci_test
paths:
- '.github/**'
- 'Dev/**'
jobs:
linux:
name: Build for Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update Submodules
run: git submodule update --init
- name: Build binaries
run: |
sudo apt-get update
sudo apt-get install scons
sudo apt-get install gcc-multilib
sudo apt-get install g++-multilib
python3 Dev/Cpp/build.py platform=linux
- name: Upload binaries
uses: actions/upload-artifact@v4
with:
name: bin_linux
path: ./Dev/Godot/addons/effekseer/bin
android:
name: Build for Android
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update Submodules
run: git submodule update --init
- name: Setup Android NDK
uses: nttld/setup-ndk@v1
with:
ndk-version: r23c
link-to-sdk: true
- name: Build binaries
run: |
sudo apt-get install scons
python3 Dev/Cpp/build.py platform=android
- name: Upload binaries
uses: actions/upload-artifact@v4
with:
name: bin_android
path: ./Dev/Godot/addons/effekseer/bin
macos:
name: Build for macOS
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
- name: Update Submodules
run: git submodule update --init
- name: Build binaries
run: |
brew install scons
python3 Dev/Cpp/build.py platform=macos
- name: Sign binaries
env:
APPLE_CERT_BASE64: ${{ secrets.MACOS_CERT_BASE64 }}
uses: ./.github/actions/sign
with:
FRAMEWORK_PATH: Dev/Cpp/bin/macos/libeffekseer.framework
APPLE_CERT_BASE64: ${{ secrets.MACOS_CERT_BASE64 }}
APPLE_CERT_PASSWORD: ${{ secrets.MACOS_CERT_PASSWORD }}
APPLE_DEV_ID: ${{ secrets.MACOS_DEV_ID }}
APPLE_DEV_TEAM_ID: ${{ secrets.MACOS_DEV_TEAM_ID }}
APPLE_DEV_APP_ID: ${{ secrets.MACOS_DEV_APP_ID }}
APPLE_DEV_PASSWORD: ${{ secrets.MACOS_DEV_APP_PASSWORD }}
- name: Upload binaries
uses: actions/upload-artifact@v4
with:
name: bin_macos
path: ./Dev/Godot/addons/effekseer/bin
ios:
name: Build for iOS
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
- name: Update Submodules
run: git submodule update --init
- name: Build binaries
run: |
brew install scons
python3 Dev/Cpp/build.py platform=ios
- name: Upload binaries
uses: actions/upload-artifact@v4
with:
name: bin_ios
path: ./Dev/Godot/addons/effekseer/bin
windows:
name: Build for Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Update Submodules
run: git submodule update --init
- name: Build binaries
run: |
python -m pip install scons
python Dev/Cpp/build.py platform=windows
shell: cmd
- name: Upload binaries
uses: actions/upload-artifact@v4
with:
name: bin_windows
path: ./Dev/Godot/addons/effekseer/bin
windows-debug:
name: Build for Windows (Debug)
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Update Submodules
run: git submodule update --init
- name: Build binaries
run: |
python -m pip install scons
python Dev/Cpp/build.py platform=windows debug=yes
shell: cmd
- name: Upload binaries
uses: actions/upload-artifact@v4
with:
name: bin_windows_debug
path: ./Dev/Godot/addons/effekseer/bin
web:
name: Build for Web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update Submodules
run: git submodule update --init
- name: Setup emsdk
uses: mymindstorm/setup-emsdk@v12
with:
version: 3.1.18
actions-cache-folder: './emsdk'
- name: Build binaries
run: |
sudo apt-get install scons
python3 Dev/Cpp/build.py platform=web
- name: Upload binaries
uses: actions/upload-artifact@v4
with:
name: bin_web
path: ./Dev/Godot/addons/effekseer/bin
merge:
name: Merge
runs-on: ubuntu-latest
needs: [linux, android, macos, ios, windows, web]
steps:
- uses: actions/checkout@v4
- name: Download Linux binaries
uses: actions/download-artifact@v4
with:
name: bin_linux
path: ./Dev/Godot/addons/effekseer/bin
- name: Download Android binaries
uses: actions/download-artifact@v4
with:
name: bin_android
path: ./Dev/Godot/addons/effekseer/bin
- name: Download macOS binaries
uses: actions/download-artifact@v4
with:
name: bin_macos
path: ./Dev/Godot/addons/effekseer/bin
- name: Download iOS binaries
uses: actions/download-artifact@v4
with:
name: bin_ios
path: ./Dev/Godot/addons/effekseer/bin
- name: Download Windows binaries
uses: actions/download-artifact@v4
with:
name: bin_windows
path: ./Dev/Godot/addons/effekseer/bin
- name: Download web binaries
uses: actions/download-artifact@v4
with:
name: bin_web
path: ./Dev/Godot/addons/effekseer/bin
- name: Upload built package
uses: actions/upload-artifact@v4
with:
name: addons
path: ./Dev/Godot/addons