Use tcp_socket_posix to replace tcp_socket_starboard #14802
Workflow file for this run
This file contains 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: evergreen | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, labeled] | |
branches: | |
- main | |
- feature/* | |
push: | |
branches: | |
- main | |
- feature/* | |
schedule: | |
# GMT timezone. | |
- cron: '0 9 * * *' | |
workflow_dispatch: | |
inputs: | |
nightly: | |
description: 'Nightly workflow.' | |
required: true | |
type: boolean | |
default: false | |
jobs: | |
evergreen-x64: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: evergreen-x64 | |
nightly: ${{ github.event.inputs.nightly }} | |
run_api_leak_detector: true | |
keep_artifacts: install/lib/libcobalt.* | |
artifact_size_increase_thresholds: '{"install/lib/libcobalt.so": 0.02, "install/lib/libcobalt.lz4": 0.02}' | |
evergreen-arm-hardfp: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: evergreen-arm-hardfp | |
nightly: ${{ github.event.inputs.nightly }} | |
run_api_leak_detector: true | |
keep_artifacts: install/lib/libcobalt.* | |
artifact_size_increase_thresholds: '{"install/lib/libcobalt.so": 0.02, "install/lib/libcobalt.lz4": 0.02}' | |
evergreen-arm-softfp: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: evergreen-arm-softfp | |
nightly: ${{ github.event.inputs.nightly }} | |
run_api_leak_detector: true | |
keep_artifacts: install/lib/libcobalt.* | |
artifact_size_increase_thresholds: '{"install/lib/libcobalt.so": 0.02, "install/lib/libcobalt.lz4": 0.02}' | |
evergreen-arm64: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: evergreen-arm64 | |
nightly: ${{ github.event.inputs.nightly }} | |
run_api_leak_detector: true | |
keep_artifacts: install/lib/libcobalt.* | |
artifact_size_increase_thresholds: '{"install/lib/libcobalt.so": 0.02, "install/lib/libcobalt.lz4": 0.02}' |