Skip to content

Envoy/macOS

Envoy/macOS #9871

Workflow file for this run

name: Envoy/macOS
permissions:
contents: read
on:
workflow_run:
workflows:
- Request
types:
- completed
concurrency:
group: ${{ github.head_ref || github.run_id }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
load:
secrets:
app-key: ${{ secrets.ENVOY_CI_APP_KEY }}
app-id: ${{ secrets.ENVOY_CI_APP_ID }}
lock-app-key: ${{ secrets.ENVOY_CI_MUTEX_APP_KEY }}
lock-app-id: ${{ secrets.ENVOY_CI_MUTEX_APP_ID }}
permissions:
actions: read
contents: read
packages: read
pull-requests: read
if: ${{ github.event.workflow_run.conclusion == 'success' }}
uses: ./.github/workflows/_load.yml
with:
cache-docker: false
check-name: macos
macos:
permissions:
contents: read
packages: read
if: ${{ fromJSON(needs.load.outputs.request).run.build-macos }}
needs:
- load
uses: ./.github/workflows/_run.yml
name: CI ${{ matrix.name || matrix.target }}
with:
command:
container-command:
request: ${{ needs.load.outputs.request }}
runs-on: macos-14-xlarge
source: ${{ matrix.source }}
steps-post:
steps-pre: ${{ matrix.steps-pre }}
target: ${{ matrix.target }}
timeout-minutes: 90
trusted: ${{ fromJSON(needs.load.outputs.trusted) }}
strategy:
fail-fast: false
matrix:
include:
- target: ci/mac_ci_steps.sh
name: macOS
source: |
source ./ci/mac_ci_setup.sh
_BAZEL_BUILD_EXTRA_OPTIONS=(
--remote_download_toplevel
--flaky_test_attempts=2
--config=bes-envoy-engflow
--config=cache-envoy-engflow
--config=ci)
export BAZEL_BUILD_EXTRA_OPTIONS=${_BAZEL_BUILD_EXTRA_OPTIONS[*]}
request:
permissions:
actions: read
contents: read
pull-requests: read
secrets:
app-id: ${{ secrets.ENVOY_CI_APP_ID }}
app-key: ${{ secrets.ENVOY_CI_APP_KEY }}
if: >-
${{ always()
&& github.event.workflow_run.conclusion == 'success'
&& fromJSON(needs.load.outputs.request).run.build-macos }}
needs:
- load
- macos
uses: ./.github/workflows/_finish.yml
with:
needs: ${{ toJSON(needs) }}