Update Cobalt 24 LTS docker-compose.yml with changes from Main branch #2417
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_24.lts.1+ | |
on: | |
pull_request: | |
types: [ready_for_review, opened, reopened, synchronize, labeled] | |
branches: | |
- '24.lts.1\+' | |
push: | |
branches: | |
- '24.lts.1\+' | |
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 |