-
-
Notifications
You must be signed in to change notification settings - Fork 280
225 lines (212 loc) · 6.04 KB
/
build.yml
File metadata and controls
225 lines (212 loc) · 6.04 KB
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
name: build
on:
push:
branches:
- dev*
- release/*
paths-ignore:
- '**.md'
- '**/*.md.in'
- 'docs/**'
- '.github/workflows/publish.yml'
- '.github/workflows/debian.yml'
- 'tools/ci/make-pkg.ps1'
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- '**.md'
- '**/*.md.in'
- 'docs/**'
workflow_dispatch:
inputs:
cxxstd:
# actions run ID
description: 'Please input cxxstd, example: 23'
# Default value if no value is explicitly provided
default: '23'
# Input has to be provided for the workflow to run
required: false
env:
__1K_CXXSTD: '${{ inputs.cxxstd }}'
GH_XCODE_VER: '16.4'
run-name: 'build@c++${{ inputs.cxxstd || 23 }}'
jobs:
win32:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Build
shell: pwsh
run: |
.\tools\cmdline\axmol -p win32 -a x64 -xc '-DAX_RENDER_API=d3d11;d3d12;gl;vk' -O3
- name: Check prebuilt workflow
shell: pwsh
run: |
./setup.ps1
axmol new HelloCpp
axmol -d .\HelloCpp -xc '-DAX_PREBUILT_DIR=build' -O3
- uses: actions/upload-artifact@v6
with:
name: windows_x64
path: |
build/bin/cpp-tests/**/*
win32-arm64:
runs-on: windows-11-arm
steps:
- uses: actions/checkout@v6
- name: Build
shell: pwsh
run: |
.\tools\cmdline\axmol -p win32 -a arm64 -xc '-DAX_RENDER_API=d3d11;d3d12;gl;vk' -O3
.\tools\cmdline\axmol run -p win32 -a arm64 -t unit-tests -O3
- name: Check prebuilt workflow
shell: pwsh
run: |
./setup.ps1
axmol new HelloCpp
axmol -d .\HelloCpp -xc '-DAX_PREBUILT_DIR=build' -O3
winuwp:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Build
shell: pwsh
run: .\tools\cmdline\axmol -p winuwp -a x64 -O3 -xc '-DAX_RENDER_API=d3d11;d3d12;gl'
win32-clang:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Build
shell: pwsh
run: .\tools\cmdline\axmol -p win32 -a 'x64' -cc clang -O3 -xc '-DAX_RENDER_API=d3d11;d3d12;gl;vk'
win32-dll:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Build
shell: pwsh
run: .\tools\cmdline\axmol -p win32 -a x64 -dll -xc '-DAX_RENDER_API=d3d11;d3d12;gl;vk'
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install dependencies
run: |
AX_ROOT=`pwd`
echo -e "y" | pwsh $AX_ROOT/setup.ps1
- name: Build
shell: pwsh
run: ./tools/cmdline/axmol -p linux -a x64 -t 'cpp-tests,lua-tests' -xc '-DAX_RENDER_API=vk;gl' && ./tools/cmdline/axmol run -p linux -a x64 -t unit-tests -wait
linux-arm64:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v6
- name: Install dependencies
run: |
AX_ROOT=`pwd`
echo -e "y" | pwsh $AX_ROOT/setup.ps1
- name: Build
shell: pwsh
run: ./tools/cmdline/axmol -p linux -a arm64 -t 'cpp-tests,lua-tests' -xc '-DAX_RENDER_API=vk;gl' && ./tools/cmdline/axmol run -p linux -a arm64 -t unit-tests -wait
osx-arm64:
runs-on: macos-15
steps:
- uses: actions/checkout@v6
- uses: maxim-lobanov/setup-xcode@v1
id: setup-xcode
with:
xcode-version: '${{ env.GH_XCODE_VER }}'
- name: Build
shell: pwsh
run: ./tools/cmdline/axmol -p osx -a arm64 && ./tools/cmdline/axmol run -p osx -a arm64 -t unit-tests
osx-x64:
runs-on: macos-15-intel
steps:
- uses: actions/checkout@v6
- uses: maxim-lobanov/setup-xcode@v1
id: setup-xcode
with:
xcode-version: '${{ env.GH_XCODE_VER }}'
- name: Build
shell: pwsh
run: ./tools/cmdline/axmol -p osx -a x64
android:
runs-on: ubuntu-latest
strategy:
matrix:
arch:
- armv7
- arm64
- x86
- x64
env:
BUILD_ARCH: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v6
- name: Build
shell: pwsh
run: |
$AX_ROOT = $(Get-Location).Path
./tools/cmdline/axmol -p android -a $env:BUILD_ARCH -xc "-DAX_RENDER_API=vk;gl"
- uses: actions/upload-artifact@v6
with:
name: android_${{ matrix.arch }}
path: |
templates/**/*.apk
tests/**/*.apk
ios-sim-x64:
runs-on: macos-15
strategy:
matrix:
target_os:
- ios
- tvos
env:
TARGET_OS: ${{ matrix.target_os }}
steps:
- uses: actions/checkout@v6
- uses: maxim-lobanov/setup-xcode@v1
id: setup-xcode
with:
xcode-version: '${{ env.GH_XCODE_VER }}'
- name: Build
shell: pwsh
run: ./tools/cmdline/axmol -p $env:TARGET_OS -a 'x64'
ios-sim-arm64:
runs-on: macos-15
strategy:
matrix:
target_os:
- ios
- tvos
env:
TARGET_OS: ${{ matrix.target_os }}
steps:
- uses: actions/checkout@v6
- uses: maxim-lobanov/setup-xcode@v1
id: setup-xcode
with:
xcode-version: '${{ env.GH_XCODE_VER }}'
- name: Build
shell: pwsh
# axmol cmdline can't guess ios arm64 as simulator, so need specify by option '-sdk'
run: ./tools/cmdline/axmol -p $env:TARGET_OS -a 'arm64' -sdk 'simulator'
wasm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Build
shell: pwsh
run: ./tools/cmdline/axmol -p wasm -O3 -xc '-DAX_ENABLE_EXT_EFFEKSEER=ON,-DAX_WASM_THREADS=8,-DAX_ENABLE_VR=ON' -j2 -t 'cpp-tests,fairygui-tests,lua-tests'
- uses: actions/upload-artifact@v6
with:
name: wasm
path: build_wasm/bin/**/*
if-no-files-found: error
wasm64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Build
shell: pwsh
run: ./tools/cmdline/axmol -p wasm64 -xc '-DAX_ENABLE_EXT_EFFEKSEER=ON,-DAX_WASM_THREADS=8' -j2 -t 'cpp-tests,fairygui-tests,lua-tests'