-
Notifications
You must be signed in to change notification settings - Fork 700
570 lines (497 loc) · 20.2 KB
/
main.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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
name: CI
on:
pull_request:
branches: [ thewarwithin ]
push:
branches: [ thewarwithin ]
paths-ignore:
- 'ActionPriorityLists/**'
- 'SpellDataDump/**'
- 'dbc_extract3/**'
- 'casc_extract/**'
env:
SIMC_PROFILE: profiles/CI.simc
CCACHE_COMPRESS: true # always enable ccache compression
ccache-generation: 0 # bump if you need to "clean" ccache
jobs:
ubuntu-gcc-build:
name: ubuntu-${{ matrix.compiler }}-cpp${{ matrix.cppVersion }}-build
runs-on: ${{ matrix.os }}
strategy:
matrix:
compiler: [gcc-12, gcc-7, gcc-14]
cppVersion: [17, 20]
include:
- compiler: gcc-7
cxx: g++-7
packages: gcc-7 g++-7
os: ubuntu-20.04
- compiler: gcc-12
cxx: g++-12
packages: gcc-12 g++-12
os: ubuntu-22.04
- compiler: gcc-14
cxx: g++-14
packages: gcc-14 g++-14
os: ubuntu-24.04
exclude:
- compiler: gcc-7
cppVersion: 20
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
env: { ccache-prefix: 'ubuntu-${{ matrix.compiler }}-cpp-${{ matrix.cppVersion }}-ccache-${{ env.ccache-generation }}' }
with:
path: ${{ runner.workspace }}/.ccache
key: ${{ env.ccache-prefix }}-${{ github.sha }}
restore-keys: ${{ env.ccache-prefix }}-
- name: Install deps
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev ninja-build ccache ${{ matrix.packages }}
- name: Configure
run: cmake -H. -B'${{ runner.workspace }}/b/ninja' -GNinja -DBUILD_GUI=OFF
-DCMAKE_BUILD_TYPE=Debug
-DCMAKE_CXX_COMPILER=${{ matrix.cxx }} -DCMAKE_C_COMPILER=${{ matrix.compiler }}
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
-DCMAKE_CXX_STANDARD=${{ matrix.cppVersion }}
- name: Build
env:
CCACHE_BASEDIR: ${{ runner.workspace }}
CCACHE_DIR: ${{ runner.workspace }}/.ccache
CCACHE_MAXSIZE: 192M # full build consumes around ~80, ~2x that to be safe
run: |
ccache -z
ninja -C '${{ runner.workspace }}/b/ninja'
ccache -s
- uses: actions/cache@v4
with:
path: |
${{ runner.workspace }}/b/ninja/simc
profiles
tests
generate_profiles_ci.sh
.git
key: ubuntu-${{ matrix.compiler }}-for_run-${{ github.sha }}-cpp-${{ matrix.cppVersion }}
ubuntu-clang-build:
name: ubuntu-build-${{ matrix.compiler }}-C++${{ matrix.cppVersion }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
cppVersion: [17, 20]
compiler: [clang++-7, clang++-15, clang++-18]
include:
- compiler: clang++-7
os: ubuntu-20.04
packages: clang-7 lld-7
- compiler: clang++-15
os: ubuntu-22.04
packages: clang-15 lld-15
enable_file_prefix_map: true
- compiler: clang++-18
os: ubuntu-24.04
packages: clang-18 lld-18
enable_file_prefix_map: true
exclude:
- compiler: clang++-7
cppVersion: 20
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
env: { ccache-prefix: 'ubuntu-${{ matrix.compiler }}-cpp-${{ matrix.cppVersion }}-ccache-${{ env.ccache-generation }}' }
with:
path: ${{ runner.workspace }}/.ccache
key: ${{ env.ccache-prefix }}-${{ github.sha }}
restore-keys: ${{ env.ccache-prefix }}-
- name: Install deps
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev ninja-build ccache ${{ matrix.packages }}
- name: Configure
env:
UBSAN_STRIP_COUNT: "`echo \"${{ runner.workspace }}//\" | grep -o '/' - | wc -l`"
run: cmake -H. -B'${{ runner.workspace }}/b/ninja' -GNinja -DBUILD_GUI=OFF
-DCMAKE_BUILD_TYPE=Debug
-DCMAKE_CXX_COMPILER=${{ matrix.compiler }}
-DCMAKE_CXX_FLAGS="-Og ${{ matrix.enable_file_prefix_map && format('-ffile-prefix-map={0}/=/', runner.workspace) || ''}}
-fno-omit-frame-pointer -fsanitize=address,undefined
-fsanitize-undefined-strip-path-components=$UBSAN_STRIP_COUNT"
-DCMAKE_EXE_LINKER_FLAGS="-fuse-ld=lld -fsanitize=address,undefined"
-DCMAKE_CXX_STANDARD=${{ matrix.cppVersion }}
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
- name: Build
env:
CCACHE_BASEDIR: ${{ runner.workspace }}
CCACHE_DIR: ${{ runner.workspace }}/.ccache
CCACHE_MAXSIZE: 256M # full build consumes around ~124, ~2x that to be safe
run: |
ccache -z
ninja -C '${{ runner.workspace }}/b/ninja'
ccache -s
- uses: actions/cache@v4
with:
path: |
${{ runner.workspace }}/b/ninja/simc
profiles
tests
generate_profiles_ci.sh
.git
key: ubuntu-${{ matrix.compiler }}-for_run-${{ github.sha }}-cpp-${{ matrix.cppVersion }}
spelldata-dump:
name: Spell Data Dump
runs-on: ${{ matrix.os }}
needs: [ ubuntu-clang-build ]
if: github.event_name == 'push'
strategy:
fail-fast: false
matrix:
cppVersion: [17]
compiler: [clang++-15]
include:
- compiler: clang++-15
os: ubuntu-22.04
steps:
- uses: actions/cache@v4
with:
path: |
${{ runner.workspace }}/b/ninja/simc
profiles
tests
generate_profiles_ci.sh
.git
key: ubuntu-${{ matrix.compiler }}-for_run-${{ github.sha }}-cpp-${{ matrix.cppVersion }}
- uses: actions/checkout@v4
- name: Dump Spell Data
env:
UBSAN_OPTIONS: print_stacktrace=1
SIMC_CLI_PATH: ${{ runner.workspace }}/b/ninja/simc
run: ${{ github.workspace}}/SpellDataDump/spelldatadump_ci.sh
- name: Check for Non-Trivial Changes
run: |
if [ "$(git ls-files -m)" = "SpellDataDump/build_info.txt" ]; then
git checkout -- SpellDataDump/build_info.txt
fi
- name: Setup
run: echo "SHORT_SHA=$(git rev-parse --short ${{ github.sha }})" >> $GITHUB_ENV
- name: Commit Spell Data
continue-on-error: true
uses: EndBug/add-and-commit@v9
with:
message: 'Update Spell Data Dump ${{ env.SHORT_SHA }}'
default_author: github_actions
fetch: --no-tags --force --prune --no-recurse-submodules --depth=1 origin ${{ github.ref_name }}
add: '*.txt'
spec-test:
name: spec-test-${{ matrix.spec }}-${{ matrix.fightstyle }}
runs-on: ${{ matrix.os }}
needs: [ ubuntu-clang-build ]
strategy:
fail-fast: false
matrix:
cppVersion: [17]
compiler: [clang++-15]
spec: [
deathknight_blood, deathknight_unholy, deathknight_frost,
demonhunter_vengeance, demonhunter_havoc,
druid_balance, druid_feral, druid_guardian, druid_restoration,
evoker_devastation,
hunter_beast_mastery, hunter_marksmanship, hunter_survival,
mage_arcane, mage_fire, mage_frost,
monk_brewmaster, monk_windwalker,
paladin_protection, paladin_retribution,
priest_shadow,
rogue_assassination, rogue_outlaw, rogue_subtlety,
shaman_elemental,
warlock_affliction, warlock_demonology, warlock_destruction,
warrior_arms, warrior_fury, warrior_protection
]
fightstyle: [singletarget, multitarget, dungeonslice]
include:
- compiler: clang++-15
os: ubuntu-22.04
- fightstyle: multitarget
style_arg: desired_targets=10
- fightstyle: dungeonslice
style_arg: fight_style=DungeonSlice
env:
UBSAN_OPTIONS: print_stacktrace=1
SIMC_ARGS: output=/dev/null threads=2 iterations=10 cleanup_threads=1
PLAYER_ARGS: load_default_gear=1
steps:
- uses: actions/cache@v4
with:
path: |
${{ runner.workspace }}/b/ninja/simc
profiles
tests
generate_profiles_ci.sh
.git
key: ubuntu-${{ matrix.compiler }}-for_run-${{ github.sha }}-cpp-${{ matrix.cppVersion }}
- name: Setup
id: setup
env:
MATRIX_SPEC: ${{ matrix.spec }}
run: |
echo "CLASS_STR=${MATRIX_SPEC%%_*}" >> "$GITHUB_ENV"
echo "SPEC_STR=${MATRIX_SPEC#*_}" >> "$GITHUB_ENV"
- name: "Log Debug"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} log=1 debug=1 ${{ matrix.style_arg }} \
enable_all_talents=1 enable_all_item_effects=1 enable_all_sets=1 \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }}
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} log=1 debug=1 ${{ matrix.style_arg }} \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }}
- name: "HTML JSON"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} html=test.html json=test.json ${{ matrix.style_arg }} \
enable_all_talents=1 enable_all_item_effects=1 enable_all_sets=1 \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }}
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} html=test.html json=test.json ${{ matrix.style_arg }} \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }}
- name: "No Talents, No Effects, No Sets"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} ${{ matrix.style_arg }} \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }}
- name: "No Talents, No Effects, All Sets"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} ${{ matrix.style_arg }} \
enable_all_sets=1 \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }}
- name: "No Talents, All Effects, No Sets"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} ${{ matrix.style_arg }} \
enable_all_item_effects=1 \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }}
- name: "No Talents, All Effects, All Sets"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} ${{ matrix.style_arg }} \
enable_all_item_effects=1 enable_all_sets=1 \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }}
- name: "Starter Talents, No Effects, No Sets"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} ${{ matrix.style_arg }} \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }} load_default_talents=1
- name: "Starter Talents, No Effects, All Sets"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} ${{ matrix.style_arg }} \
enable_all_sets=1 \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }} load_default_talents=1
- name: "Starter Talents, All Effects, No Sets"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} ${{ matrix.style_arg }} \
enable_all_item_effects=1 \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }} load_default_talents=1
- name: "Starter Talents, All Effects, All Sets"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} ${{ matrix.style_arg }} \
enable_all_item_effects=1 enable_all_sets=1 \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }} load_default_talents=1
- name: "All Talents, No Effects, No Sets"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} ${{ matrix.style_arg }} \
enable_all_talents=1 \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }}
- name: "All Talents, No Effects, All Sets"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} ${{ matrix.style_arg }} \
enable_all_talents=1 enable_all_sets=1 \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }}
- name: "All Talents, All Effects, No Sets"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} ${{ matrix.style_arg }} \
enable_all_talents=1 enable_all_item_effects=1 \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }}
- name: "All Talents, All Effects, All Sets"
if: always()
run: |
${{ runner.workspace }}/b/ninja/simc ${{ env.SIMC_ARGS }} ${{ matrix.style_arg }} \
enable_all_talents=1 enable_all_item_effects=1 enable_all_sets=1 \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }}
- name: Dump APL
id: dump_apl
if: github.event_name == 'push' && matrix.fightstyle == 'singletarget' && !failure()
run: |
${{ runner.workspace }}/b/ninja/simc save_profiles=1 save_full_profile=0 \
enable_all_talents=1 enable_all_item_effects=1 enable_all_sets=1 \
${{ env.CLASS_STR }}=${{ matrix.spec }} spec=${{ env.SPEC_STR }} ${{ env.PLAYER_ARGS }} \
save_actions=${{ matrix.spec }}.simc
- name: Upload APL
if: steps.dump_apl.outcome == 'success'
uses: actions/upload-artifact@v4
with:
name: apl-${{ github.sha }}-${{ matrix.spec }}
path: ${{ matrix.spec }}.simc
retention-days: 1
apl-dump:
name: Action Priority List Dump
runs-on: ${{ matrix.os }}
needs: [ spec-test, spelldata-dump ]
if: github.event_name == 'push' && ( success() || failure() ) && github.repository == 'simulationcraft/simc'
strategy:
fail-fast: false
matrix:
cppVersion: [17]
compiler: [clang++-15]
include:
- compiler: clang++-15
os: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Download APLs
uses: actions/download-artifact@v4
with:
path: ActionPriorityLists
pattern: apl-${{ github.sha }}-*
merge-multiple: true
- name: Setup
run: echo "SHORT_SHA=$(git rev-parse --short ${{ github.sha }})" >> $GITHUB_ENV
- name: Commit APLs
continue-on-error: true
uses: EndBug/add-and-commit@v9
with:
message: 'Update APL Dump ${{ env.SHORT_SHA }}'
default_author: github_actions
fetch: --no-tags --force --prune --no-recurse-submodules --depth=1 origin ${{ github.ref_name }}
add: '*.simc'
- name: Cleanup
uses: geekyeggo/delete-artifact@v5
with:
name: apl-${{ github.sha }}-*
ubuntu-run:
name: ubuntu-${{ matrix.compiler }}-cpp-${{ matrix.cppVersion }}-${{ matrix.type }}
runs-on: ${{ matrix.os }}
needs: [ ubuntu-clang-build, ubuntu-gcc-build ]
strategy:
fail-fast: false
matrix:
cppVersion: [17, 20]
compiler: [clang++-7, clang++-15, clang++-18, gcc-7, gcc-12, gcc-14]
type: [spell_query, log_debug, patchwerk, dungeon_slice]
include:
- type: spell_query
simc_flags: spell_query=spell > /dev/null
- type: log_debug
simc_flags: $SIMC_PROFILE log=1 debug=1 max_time=100
- type: patchwerk
simc_flags: $SIMC_PROFILE iterations=10 cleanup_threads=1
- type: dungeon_slice
simc_flags: $SIMC_PROFILE iterations=10 fight_style=DungeonSlice cleanup_threads=1
- compiler: clang++-7
os: ubuntu-20.04
- compiler: clang++-15
os: ubuntu-22.04
- compiler: clang++-18
os: ubuntu-24.04
- compiler: gcc-14
os: ubuntu-24.04
- compiler: gcc-12
os: ubuntu-22.04
- compiler: gcc-7
os: ubuntu-20.04
exclude:
- compiler: clang++-7
cppVersion: 20
- compiler: gcc-7
cppVersion: 20
steps:
- uses: actions/cache@v4
with:
path: |
${{ runner.workspace }}/b/ninja/simc
profiles
tests
generate_profiles_ci.sh
.git
key: ubuntu-${{ matrix.compiler }}-for_run-${{ github.sha }}-cpp-${{ matrix.cppVersion }}
- name: Run
env:
UBSAN_OPTIONS: print_stacktrace=1
run: ${{ runner.workspace }}/b/ninja/simc output=/dev/null html=/dev/null json2=/dev/null ${{ matrix.simc_flags }}
simc-profiles:
name: Regenerate profiles
runs-on: ${{ matrix.os }}
needs: [ ubuntu-clang-build ]
if: github.event_name == 'push'
strategy:
fail-fast: false
matrix:
cppVersion: [17]
compiler: [clang++-15]
include:
- compiler: clang++-15
os: ubuntu-22.04
steps:
- uses: actions/cache@v4
with:
path: |
${{ runner.workspace }}/b/ninja/simc
profiles
tests
generate_profiles_ci.sh
.git
key: ubuntu-${{ matrix.compiler }}-for_run-${{ github.sha }}-cpp-${{ matrix.cppVersion }}
- uses: actions/checkout@v4
- name: Run
env:
UBSAN_OPTIONS: print_stacktrace=1
SIMC_CLI_PATH: ${{ runner.workspace }}/b/ninja/simc
run: ${{ github.workspace }}/generate_profiles_ci.sh
- name: Commit Profiles
continue-on-error: true
uses: EndBug/[email protected]
with:
message: 'Regenerate profiles'
default_author: github_actions
fetch: --no-tags --force --prune --no-recurse-submodules --depth=1 origin ${{ github.ref_name }}
add: '*.simc'
build-osx:
name: macos-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: make SANITIZE=1 -C engine debug -j 2
- name: Smoke Test
run: ./engine/simc $SIMC_PROFILE iterations=5 output=/dev/null html=/dev/null json2=/dev/null cleanup_threads=1
windows-VS:
name: windows-VS-${{ matrix.vs }}-${{ matrix.arch }}
runs-on: windows-latest
strategy:
matrix:
vs: [2019]
arch: [x64, amd64_arm64]
include:
- arch: x64
runSmokeTest: false # disable smoke test for now, as it seems to hang the workflow indefinitely on assert, instead of failing.
env:
CMAKE_BUILD_DIR: ${{ github.workspace }}/builddir/
steps:
- uses: actions/checkout@v4
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
- uses: lukka/get-cmake@latest
# On Windows runners, let's ensure to have the Developer Command Prompt environment setup correctly. As used here the Developer Command Prompt created is targeting x64 and using the default the Windows SDK.
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.arch }}
- name: Generate project files
run: |
cmake -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DBUILD_GUI=OFF -DCMAKE_BUILD_TYPE=Debug
- name: Build
run: |
cmake --build "${{ env.CMAKE_BUILD_DIR }}"
- name: Smoke Test
if: matrix.runSmokeTest
run: ${{ env.CMAKE_BUILD_DIR }}/simc.exe $env:SIMC_PROFILE iterations=5 output=nul html=nul json2=nul cleanup_threads=1