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 selection 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
@@ -990,13 +992,15 @@ jobs:
990992 echo "" >> $GITHUB_STEP_SUMMARY
991993
992994 changelog :
993- needs : [ runner-selection ]
995+ # needs: [ runner-selection ]
994996 defaults :
995997 run :
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 :
@@ -1015,15 +1019,17 @@ jobs:
10151019 tag-pattern : ' boost-.*\..*\..*'
10161020
10171021 antora :
1018- needs : [ runner-selection ]
1022+ # needs: [ runner-selection ]
10191023 strategy :
10201024 matrix :
10211025 include :
10221026 - { name: Windows, os: windows-latest }
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