Skip to content

Commit c705e3a

Browse files
committed
Skip self-hosted runner selection for now
1 parent 4efdcac commit c705e3a

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/ci.yml

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

5151
build:
52-
needs: [ runner-selection ]
52+
# needs: [ runner-selection ]
5353
defaults:
5454
run:
5555
shell: bash
@@ -839,7 +839,9 @@ jobs:
839839
build-type: "Release"
840840

841841
name: ${{ matrix.name }}
842-
runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)[matrix.runs-on] }}
842+
# Skip self-hosted selection for now
843+
# runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)[matrix.runs-on] }}
844+
runs-on: ${{ matrix.runs-on }}
843845
container:
844846
image: ${{ matrix.container }}
845847
options: --privileged
@@ -1153,7 +1155,9 @@ jobs:
11531155
shell: bash
11541156

11551157
name: Changelog Summary
1156-
runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)['ubuntu-22.04'] }}
1158+
# Skip self-hosted runners for now
1159+
# runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)['ubuntu-22.04'] }}
1160+
runs-on: 'ubuntu-22.04'
11571161
timeout-minutes: 120
11581162

11591163
steps:
@@ -1181,7 +1185,9 @@ jobs:
11811185
- { name: Ubuntu, os: ubuntu-latest }
11821186
- { name: MacOS, os: macos-15 }
11831187
name: Antora Docs (${{ matrix.name }})
1184-
runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)[matrix.os] }}
1188+
# Skip self-hosted runners for now
1189+
# runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)[matrix.os] }}
1190+
runs-on: ${{ matrix.os }}
11851191
defaults:
11861192
run:
11871193
shell: bash

0 commit comments

Comments
 (0)