Introduce pthread_mutex APIs. #7683
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: linux | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, labeled] | |
branches: | |
- main | |
- feature/* | |
push: | |
branches: | |
- main | |
- feature/* | |
schedule: | |
# GMT timezone. | |
- cron: '0 4 * * *' | |
workflow_dispatch: | |
inputs: | |
nightly: | |
description: 'Nightly workflow.' | |
required: true | |
type: boolean | |
default: false | |
jobs: | |
linux-x64: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: linux | |
nightly: ${{ github.event.inputs.nightly }} | |
linux-clang-3-9: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: linux-clang-3-9 | |
nightly: ${{ github.event.inputs.nightly }} | |
modular: true | |
linux-gcc-6-3: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: linux-gcc-6-3 | |
nightly: ${{ github.event.inputs.nightly }} | |
modular: true | |
# TODO(b/285632780): Enable blackbox tests for modular linux workflows. | |
linux-modular: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: linux-modular | |
nightly: ${{ github.event.inputs.nightly }} | |
modular: true |