-
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 1.05 KB
/
on-push.yaml
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
name: On Push
run-name: Build ${{ github.ref }}
permissions: write-all
on:
pull_request:
branches: [ "main", "dev" ]
push:
branches: [ "main", "dev" ]
paths-ignore:
- 'README.md'
- 'docs/**'
jobs:
build-debug:
name: Build Debug
uses: ./.github/workflows/build.yaml
with:
cmake-preset: x86-debug
upload-artifact-dll: debug-dll
upload-artifact-vdf: debug-vdf
build-release:
name: Build Release
uses: ./.github/workflows/build.yaml
with:
cmake-preset: x86-release
upload-artifact-dll: release-dll
upload-artifact-vdf: release-vdf
build-relwithdebinfo:
name: Build RelWithDebInfo
uses: ./.github/workflows/build.yaml
with:
cmake-preset: x86-relwithdebinfo
upload-artifact-dll: relwithdebinfo-dll
upload-artifact-vdf: relwithdebinfo-vdf
build-minsizerel:
name: Build MinSizeRel
uses: ./.github/workflows/build.yaml
with:
cmake-preset: x86-minsizerel
upload-artifact-dll: minsizerel-dll
upload-artifact-vdf: minsizerel-vdf