forked from H-uru/Plasma
-
Notifications
You must be signed in to change notification settings - Fork 0
251 lines (220 loc) · 8.41 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
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
name: CI
on: [push, pull_request]
jobs:
windows:
runs-on: windows-2019
name: ${{ matrix.platform.str }}-${{ matrix.cfg.str }}
strategy:
matrix:
platform:
- { generator: Visual Studio 16 2019, max-version: 7, arch: Win32, qt-arch: win32_msvc2019, qt-version: 5.15.2, str: windows-x86 }
- { generator: Visual Studio 16 2019, max-version: 2022, arch: x64, qt-arch: win64_msvc2019_64, qt-version: 5.15.2, str: windows-x64 }
cfg:
- { external: OFF, type: RelWithPDB, str: internal-release }
- { external: OFF, type: Debug, str: internal-debug }
- { external: ON, type: RelWithPDB, str: external-release }
steps:
- name: Checkout Plasma
uses: actions/checkout@v2
with:
submodules: true
- name: Checkout MaxSDK
continue-on-error: true
uses: actions/checkout@v2
with:
repository: H-uruMachineUser/3dsMaxSDK
token: ${{ secrets.MACHINE_USER_REPO_READ }}
path: maxsdk
- name: Install Qt
continue-on-error: true
uses: jurplel/install-qt-action@v2
with:
version: ${{ matrix.platform.qt-version }}
arch: ${{ matrix.platform.qt-arch }}
dir: ${{ github.workspace }}/qt
- name: Configure
run: |
cmake `
-G "${{ matrix.platform.generator }}" -A "${{ matrix.platform.arch }}" `
-DPLASMA_BUILD_MAX_PLUGIN=ON `
-DPLASMA_BUILD_TESTS=ON `
-DPLASMA_BUILD_TOOLS=ON `
-DPLASMA_EXTERNAL_RELEASE=${{ matrix.cfg.external }} `
-DPLASMA_VCPKG_NUGET_SOURCE="https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json" `
-DPLASMA_VCPKG_NUGET_OWNER="${{ github.repository_owner }}" `
-DPLASMA_VCPKG_NUGET_TOKEN="${{ secrets.GITHUB_TOKEN }}" `
-DPLASMA_VCPKG_NUGET_RW=TRUE `
-D3dsm_PATH="${{ github.workspace }}/maxsdk/${{ matrix.platform.max-version }}" `
-S . -B build
- name: Build
run: |
cmake --build build --config "${{ matrix.cfg.type }}" -j 2
- name: Install
run: |
cmake --build build --target INSTALL --config "${{ matrix.cfg.type }}" -j 2
- name: Upload Artifacts
uses: actions/upload-artifact@v2.2.4
with:
name: plasma-${{ matrix.platform.str }}-${{ matrix.cfg.str }}
path: build/install
- name: Test
run: |
cmake --build build --target check --config "${{ matrix.cfg.type }}" -j 2
# HACK to enable/disable the max CI based on presence/absence of secret. See also:
# https://github.com/actions/runner/issues/1138
max-secrets:
if: github.event_name == 'push'
runs-on: ubuntu-latest
name: Check for Max SDK
outputs:
HAS_MACHINE_USER_TOKEN: ${{ steps.check.outputs.MACHINE_USER_TOKEN }}
steps:
- name: Check for Secret
run: >
echo "::set-output name=MACHINE_USER_TOKEN::${{ env.MACHINE_USER_TOKEN != '' }}";
id: check
env:
MACHINE_USER_TOKEN: ${{ secrets.MACHINE_USER_REPO_READ }}
max:
# Can only run if we have a token for our super seekrit Max SDK repo. Sad.
needs: ["max-secrets"]
if: needs.max-secrets.outputs.HAS_MACHINE_USER_TOKEN == 'true'
runs-on: windows-2019
name: maxplugin-${{ matrix.cfg.str }}
strategy:
matrix:
cfg:
# Max 7 and 2020 are tested in the x86 and x64 windows build jobs, respectively.
- { sdk-version: 2008, generator: Visual Studio 16 2019, arch: Win32, str: 2008-windows-x86 }
- { sdk-version: 2012, generator: Visual Studio 16 2019, arch: Win32, str: 2012-windows-x86 }
- { sdk-version: 2013, generator: Visual Studio 16 2019, arch: x64, str: 2013-windows-x64 }
- { sdk-version: 2017, generator: Visual Studio 16 2019, arch: x64, str: 2017-windows-x64 }
- { sdk-version: 2019, generator: Visual Studio 16 2019, arch: x64, str: 2019-windows-x64 }
- { sdk-version: 2020, generator: Visual Studio 16 2019, arch: x64, str: 2020-windows-x64 }
steps:
- name: Checkout Plasma
uses: actions/checkout@v2
with:
submodules: true
- name: Checkout MaxSDK
uses: actions/checkout@v2
with:
repository: H-uruMachineUser/3dsMaxSDK
token: ${{ secrets.MACHINE_USER_REPO_READ }}
path: maxsdk
- name: Configure
run: |
cmake `
-G "${{ matrix.cfg.generator }}" -A "${{ matrix.cfg.arch }}" `
-DPLASMA_BUILD_CLIENT=OFF `
-DPLASMA_BUILD_MAX_PLUGIN=REQUIRED `
-DPLASMA_BUILD_LAUNCHER=OFF `
-DPLASMA_BUILD_TESTS=OFF `
-DPLASMA_BUILD_TOOLS=OFF `
-DPLASMA_VCPKG_NUGET_SOURCE="https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json" `
-DPLASMA_VCPKG_NUGET_OWNER="${{ github.repository_owner }}" `
-DPLASMA_VCPKG_NUGET_TOKEN="${{ secrets.GITHUB_TOKEN }}" `
-DPLASMA_VCPKG_NUGET_RW=TRUE `
-D3dsm_PATH="${{ github.workspace }}/maxsdk/${{ matrix.cfg.sdk-version }}" `
-S . -B build
- name: Build
run: |
cmake --build build --target INSTALL --config Release -j 2
- name: Upload Artifacts
uses: actions/upload-artifact@v2.2.4
with:
name: max-${{ matrix.cfg.str }}
path: build/install
linux:
runs-on: ubuntu-latest
name: ${{ matrix.platform.str }}-${{ matrix.cfg.str }}
strategy:
matrix:
platform:
- { str: linux-x64 }
cfg:
- { external: OFF, type: RelWithDebInfo, str: internal-release }
- { external: OFF, type: Debug, str: internal-debug }
- { external: ON, type: RelWithDebInfo, str: external-release }
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
autoconf \
cmake \
libcairo2 \
libsecret-1-dev \
libtool \
nasm \
ninja-build \
qtbase5-dev
- name: Configure
run: |
cmake \
-G Ninja \
-DUSE_VCPKG=ON \
-DCMAKE_BUILD_TYPE=${{ matrix.cfg.type }} \
-DPLASMA_BUILD_TESTS=ON \
-DPLASMA_BUILD_TOOLS=ON \
-DPLASMA_EXTERNAL_RELEASE=${{ matrix.cfg.external }} \
-DPLASMA_VCPKG_NUGET_SOURCE="https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json" \
-DPLASMA_VCPKG_NUGET_OWNER="${{ github.repository_owner }}" \
-DPLASMA_VCPKG_NUGET_TOKEN="${{ secrets.GITHUB_TOKEN }}" \
-DPLASMA_VCPKG_NUGET_RW=TRUE \
-S . -B build
- name: Build
run: |
cmake --build build -j 2
- name: Test
run: |
cmake --build build --target check -j 2
- name: Install
run: |
cmake --build build --target install -j 2
macos:
runs-on: macos-latest
name: ${{ matrix.platform.str }}-${{ matrix.cfg.str }}
strategy:
matrix:
platform:
- { str: macos-x64 }
cfg:
- { external: OFF, type: RelWithDebInfo, str: internal-release }
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Install dependencies
run: |
brew bundle
- name: Configure
run: |
cmake \
-DCMAKE_BUILD_TYPE=${{ matrix.cfg.type }} \
-DCMAKE_FIND_FRAMEWORK=LAST \
-DPLASMA_BUILD_TESTS=ON \
-DPLASMA_BUILD_TOOLS=ON \
-DPLASMA_EXTERNAL_RELEASE=${{ matrix.cfg.external }} \
-DQt5_ROOT=$(brew --prefix qt@5) \
-DCURL_ROOT=$(brew --prefix curl) \
-Dexpat_ROOT=$(brew --prefix expat) \
-DOpenSSL_ROOT=$(brew --prefix openssl@1.1) \
-DOpenAL_ROOT=$(brew --prefix openal-soft) \
-DPython3_ROOT=$(brew --prefix python@3.10) \
-DZLIB_ROOT=$(brew --prefix zlib) \
-S . -B build
- name: Build
run: |
cmake --build build -j 2
- name: Test
run: |
cmake --build build --target check -j 2
- name: Install
run: |
cmake --build build --target install -j 2