|
49 | 49 | uses: cppalliance/aws-hosted-runners@v1.0.0 |
50 | 50 |
|
51 | 51 | build: |
52 | | - needs: [ runner-selection ] |
| 52 | + # needs: [ runner-selection ] |
53 | 53 | defaults: |
54 | 54 | run: |
55 | 55 | shell: bash |
@@ -839,7 +839,9 @@ jobs: |
839 | 839 | build-type: "Release" |
840 | 840 |
|
841 | 841 | 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 }} |
843 | 845 | container: |
844 | 846 | image: ${{ matrix.container }} |
845 | 847 | options: --privileged |
@@ -1153,7 +1155,9 @@ jobs: |
1153 | 1155 | shell: bash |
1154 | 1156 |
|
1155 | 1157 | 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' |
1157 | 1161 | timeout-minutes: 120 |
1158 | 1162 |
|
1159 | 1163 | steps: |
@@ -1181,7 +1185,9 @@ jobs: |
1181 | 1185 | - { name: Ubuntu, os: ubuntu-latest } |
1182 | 1186 | - { name: MacOS, os: macos-15 } |
1183 | 1187 | 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 }} |
1185 | 1191 | defaults: |
1186 | 1192 | run: |
1187 | 1193 | shell: bash |
|
0 commit comments