Skip to content

Commit a752401

Browse files
committed
Fix errors
1 parent 61dee1f commit a752401

File tree

1 file changed

+28
-26
lines changed

1 file changed

+28
-26
lines changed

.github/workflows/build-release.yml

Lines changed: 28 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,5 @@
11
name: Build Doxygen
22

3-
x-os-matrix: &os-matrix
4-
strategy:
5-
fail-fast: false
6-
matrix:
7-
include:
8-
- os: ubuntu-24.04
9-
cpu: intel
10-
platform: linux
11-
extension: ""
12-
archive_format: tar.gz
13-
- os: windows-latest
14-
cpu: intel
15-
platform: windows
16-
extension: .exe
17-
archive_format: zip
18-
- os: macos-15
19-
cpu: arm
20-
platform: macos
21-
extension: ""
22-
archive_format: tar.gz
23-
- os: macos-15-intel
24-
cpu: intel
25-
platform: macos
26-
extension: ""
27-
archive_format: tar.gz
28-
293
on:
304
workflow_dispatch:
315

@@ -36,6 +10,34 @@ env:
3610
BUILD_TYPE: Release
3711

3812
jobs:
13+
# anchor job that defines the matrix but never runs
14+
_os-matrix: &os-matrix
15+
if: false
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
include:
20+
- os: ubuntu-24.04
21+
cpu: intel
22+
platform: linux
23+
extension: ""
24+
archive_format: tar.gz
25+
- os: windows-latest
26+
cpu: intel
27+
platform: windows
28+
extension: .exe
29+
archive_format: zip
30+
- os: macos-15
31+
cpu: arm
32+
platform: macos
33+
extension: ""
34+
archive_format: tar.gz
35+
- os: macos-15-intel
36+
cpu: intel
37+
platform: macos
38+
extension: ""
39+
archive_format: tar.gz
40+
3941
#===============================================================
4042
# DOXYGEN JOB
4143
#===============================================================

0 commit comments

Comments
 (0)