File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments