multiplexer: Remove stray multiplexer references #11539
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and test | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: # allows manual triggering | |
| permissions: | |
| contents: read | |
| jobs: | |
| # Runner labels are repository (owner) specific, so the Meta larger runners | |
| # (4-core-ubuntu, windows-8-core) don't exist on forks and jobs requesting | |
| # them would sit queued forever waiting for a runner that isn't available. | |
| # Fall back to the standard GitHub-hosted runners there. | |
| linux-build-and-test: | |
| runs-on: ${{ github.repository_owner == 'facebook' && '4-core-ubuntu' || 'ubuntu-latest' }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup_linux_env | |
| - uses: ./.github/actions/build_debug | |
| - uses: ./.github/actions/run_test_py | |
| macos-build-and-test: | |
| # Pinned to macos-14: on the macos-15 runner image `latest-stable` selects an | |
| # Xcode/SDK that mis-targets the deployment SDK and breaks the `cargo build` | |
| # step (actions/runner-images#12758). macos-14 resolves to a known-good Xcode 16.x. | |
| runs-on: macos-14 | |
| steps: | |
| - uses: maxim-lobanov/setup-xcode@v1.6.0 | |
| with: | |
| xcode-version: latest-stable | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup_macos_env | |
| - uses: ./.github/actions/build_debug | |
| - uses: ./.github/actions/run_test_py | |
| windows-build-and-test: | |
| runs-on: ${{ github.repository_owner == 'facebook' && 'windows-8-core' || 'windows-latest' }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup_windows_env | |
| - uses: ./.github/actions/build_debug | |
| - uses: ./.github/actions/run_test_py |