Skip to content

Commit 5d5c824

Browse files
Hide internal workflow components
1 parent 498eaa4 commit 5d5c824

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
get-matrix:
12-
uses: ./.github/workflows/matrix-config.yml
12+
uses: ./.github/workflows/_matrix-config.yml
1313

1414
build-linux:
1515
name: linux-${{ matrix.c_compiler }}-qt${{ matrix.qt_version }}
@@ -25,7 +25,7 @@ jobs:
2525
- c_compiler: clang
2626
cpp_compiler: clang++
2727

28-
uses: ./.github/workflows/build-shared.yml
28+
uses: ./.github/workflows/_build-shared.yml
2929
with:
3030
os: ubuntu-latest
3131
c_compiler: ${{ matrix.c_compiler }}

.github/workflows/macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
get-matrix:
12-
uses: ./.github/workflows/matrix-config.yml
12+
uses: ./.github/workflows/_matrix-config.yml
1313

1414
build-macos-intel:
1515
name: macos-${{ matrix.c_compiler }}-qt${{ matrix.qt_version }}-intel
@@ -25,7 +25,7 @@ jobs:
2525
- c_compiler: clang
2626
cpp_compiler: clang++
2727

28-
uses: ./.github/workflows/build-shared.yml
28+
uses: ./.github/workflows/_build-shared.yml
2929
with:
3030
os: macos-13 # Intel-based macOS
3131
c_compiler: ${{ matrix.c_compiler }}
@@ -51,7 +51,7 @@ jobs:
5151
- qt_version: "5.12.*"
5252
- qt_version: "5.15.*"
5353

54-
uses: ./.github/workflows/build-shared.yml
54+
uses: ./.github/workflows/_build-shared.yml
5555
with:
5656
os: macos-latest # Apple Silicon macOS
5757
c_compiler: ${{ matrix.c_compiler }}

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
get-matrix:
12-
uses: ./.github/workflows/matrix-config.yml
12+
uses: ./.github/workflows/_matrix-config.yml
1313

1414
build-windows:
1515
name: windows-${{ matrix.c_compiler }}-qt${{ matrix.qt_version }}
@@ -27,7 +27,7 @@ jobs:
2727
- c_compiler: clang
2828
cpp_compiler: clang++
2929

30-
uses: ./.github/workflows/build-shared.yml
30+
uses: ./.github/workflows/_build-shared.yml
3131
with:
3232
os: windows-latest
3333
c_compiler: ${{ matrix.c_compiler }}

0 commit comments

Comments
 (0)