Skip to content

Commit 70db1c5

Browse files
committed
GHA: skip self-hosted runner select for now
1 parent 09006cb commit 70db1c5

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
uses: cppalliance/aws-hosted-runners@v1.0.0
4949

5050
build:
51-
needs: [ runner-selection ]
51+
# needs: [ runner-selection ]
5252
defaults:
5353
run:
5454
shell: bash
@@ -667,7 +667,9 @@ jobs:
667667
build-type: "Release"
668668

669669
name: ${{ matrix.name }}
670-
runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)[matrix.runs-on] }}
670+
# Skip self-hosted select for now
671+
# runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)[matrix.runs-on] }}
672+
runs-on: ${{ matrix.runs-on }}
671673
container:
672674
image: ${{ matrix.container }}
673675
options: --privileged
@@ -996,7 +998,9 @@ jobs:
996998
shell: bash
997999

9981000
name: Changelog Summary
999-
runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)['ubuntu-22.04'] }}
1001+
# Skip self-hosted runners for now
1002+
# runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)['ubuntu-22.04'] }}
1003+
runs-on: 'ubuntu-22.04'
10001004
timeout-minutes: 120
10011005

10021006
steps:
@@ -1023,7 +1027,9 @@ jobs:
10231027
- { name: Ubuntu, os: ubuntu-latest }
10241028
- { name: MacOS, os: macos-15 }
10251029
name: Antora Docs (${{ matrix.name }})
1026-
runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)[matrix.os] }}
1030+
# Skip self-hosted runners for now
1031+
# runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)[matrix.os] }}
1032+
runs-on: ${{ matrix.os }}
10271033
defaults:
10281034
run:
10291035
shell: bash

0 commit comments

Comments
 (0)