-
-
Notifications
You must be signed in to change notification settings - Fork 3
77 lines (68 loc) · 1.91 KB
/
build.yml
File metadata and controls
77 lines (68 loc) · 1.91 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
# Inspired by PCSX2 CI Matrixes
name: 🔨 Build
on:
pull_request:
branches:
- master
jobs:
build_linux_clang:
name: "🐧 Linux (Clang)"
uses: ./.github/workflows/linux_build.yml
with:
jobName: "Linux Clang Build"
artifactPrefixName: "myMCpp-linux-x64-clang"
compiler: clang
secrets: inherit
build_linux_gcc:
name: "🐧 Linux (GCC)"
uses: ./.github/workflows/linux_build.yml
with:
jobName: "Linux GCC Build"
artifactPrefixName: "myMCpp-linux-x64-gcc"
compiler: gcc
secrets: inherit
build_macos:
name: "🍎 macOS"
uses: ./.github/workflows/macos_build.yml
with:
jobName: "macOS Universal Build"
artifactPrefixName: "myMCpp-macos-universal"
secrets: inherit
build_windows_x64_clang:
name: "🪟 Windows x64 (Clang)"
uses: ./.github/workflows/windows_build.yml
with:
jobName: "Windows x64 Clang Build"
artifactPrefixName: "myMCpp-windows-x64-clang"
platform: x64
compiler: clang
secrets: inherit
build_windows_x64_msvc:
name: "🪟 Windows x64 (MSVC)"
uses: ./.github/workflows/windows_build.yml
with:
jobName: "Windows x64 MSVC Build"
artifactPrefixName: "myMCpp-windows-x64-msvc"
platform: x64
compiler: msvc
secrets: inherit
build_windows_arm64_clang:
name: "🪟 Windows ARM64 (Clang)"
uses: ./.github/workflows/windows_build.yml
with:
jobName: "Windows ARM64 Clang Build"
artifactPrefixName: "myMCpp-windows-arm64-clang"
os: windows-11-arm
platform: ARM64
compiler: clang
secrets: inherit
build_windows_arm64_msvc:
name: "🪟 Windows ARM64 (MSVC)"
uses: ./.github/workflows/windows_build.yml
with:
jobName: "Windows ARM64 MSVC Build"
artifactPrefixName: "myMCpp-windows-arm64-msvc"
os: windows-11-arm
platform: ARM64
compiler: msvc
secrets: inherit