-
Notifications
You must be signed in to change notification settings - Fork 19
102 lines (91 loc) · 2.13 KB
/
debug.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
name: Debug build
on:
push:
branches: [master]
paths:
- .github/workflows/build.yml
- .github/workflows/debug.yml
- CMakeLists.txt
- cmake/**
- icons.qrc
- icons/**
- include/**
- src/**
- windows.rc
pull_request:
branches: [master]
paths:
- .github/workflows/build.yml
- .github/workflows/debug.yml
- CMakeLists.txt
- cmake/**
- icons.qrc
- icons/**
- include/**
- src/**
- windows.rc
schedule:
- cron: 0 5 * * 5
concurrency:
group: debug-${{ github.ref }}
cancel-in-progress: true
jobs:
build-linux:
name: ${{ matrix.os }} with ${{ matrix.compiler }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, ubuntu-24.04-arm]
compiler:
- Clang
- GCC
permissions:
actions: read
contents: read
security-events: write
uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
compiler: ${{ matrix.compiler }}
build-config: Debug
version: ${{ github.sha }}
build-windows:
name: ${{ matrix.os }} with ${{ matrix.compiler }}
strategy:
fail-fast: false
matrix:
os: [windows-2019, windows-2022, windows-2025]
compiler:
- Clang
- MSVC
include:
- os: windows-2019
compiler: MSVC32
permissions:
actions: read
contents: read
security-events: write
uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
compiler: ${{ matrix.compiler }}
build-config: Debug
version: ${{ github.sha }}
build-macos:
name: ${{ matrix.os }} with ${{ matrix.compiler }}
strategy:
fail-fast: false
matrix:
os: [macos-13, macos-14, macos-15]
compiler:
- Clang
permissions:
actions: read
contents: read
security-events: write
uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
compiler: ${{ matrix.compiler }}
build-config: Debug
version: ${{ github.sha }}