Address potential Persistent Settings Getters race. #11943
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 | |
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 | |
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 | |
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 |