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
@@ -1147,13 +1149,15 @@ jobs:
11471149 echo "" >> $GITHUB_STEP_SUMMARY
11481150
11491151 changelog :
1150- needs : [ runner-selection ]
1152+ # needs: [ runner-selection ]
11511153 defaults :
11521154 run :
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 :
@@ -1172,7 +1176,7 @@ jobs:
11721176 tag-pattern : ' boost-.*\..*\..*'
11731177
11741178 antora :
1175- needs : [ runner-selection ]
1179+ # needs: [ runner-selection ]
11761180 strategy :
11771181 fail-fast : false
11781182 matrix :
@@ -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