Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
uses: cppalliance/aws-hosted-runners@v1.0.0

build:
needs: [ runner-selection ]
# needs: [ runner-selection ]
defaults:
run:
shell: bash
Expand Down Expand Up @@ -839,7 +839,9 @@ jobs:
build-type: "Release"

name: ${{ matrix.name }}
runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)[matrix.runs-on] }}
# Skip self-hosted selection for now
# runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)[matrix.runs-on] }}
runs-on: ${{ matrix.runs-on }}
container:
image: ${{ matrix.container }}
options: --privileged
Expand Down Expand Up @@ -1147,13 +1149,15 @@ jobs:
echo "" >> $GITHUB_STEP_SUMMARY

changelog:
needs: [ runner-selection ]
# needs: [ runner-selection ]
defaults:
run:
shell: bash

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

steps:
Expand All @@ -1172,7 +1176,7 @@ jobs:
tag-pattern: 'boost-.*\..*\..*'

antora:
needs: [ runner-selection ]
# needs: [ runner-selection ]
strategy:
fail-fast: false
matrix:
Expand All @@ -1181,7 +1185,9 @@ jobs:
- { name: Ubuntu, os: ubuntu-latest }
- { name: MacOS, os: macos-15 }
name: Antora Docs (${{ matrix.name }})
runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)[matrix.os] }}
# Skip self-hosted runners for now
# runs-on: ${{ fromJSON(needs.runner-selection.outputs.labelmatrix)[matrix.os] }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
Expand Down
Loading