Add --url command-line switch to set an initial URL. (#4908) #18704
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: android | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, labeled] | |
branches: | |
- main | |
- experimental/* | |
- feature/* | |
push: | |
branches: | |
- main | |
- experimental/* | |
- feature/* | |
workflow_dispatch: | |
inputs: | |
nightly: | |
description: 'Nightly workflow.' | |
required: true | |
type: boolean | |
default: false | |
jobs: | |
chromium_android-arm64: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: chromium_android-arm64 | |
nightly: ${{ github.event.inputs.nightly }} | |
secrets: | |
datadog_api_key: ${{ secrets.DD_API_KEY }} | |
chromium_android-arm: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: chromium_android-arm | |
nightly: ${{ github.event.inputs.nightly }} | |
secrets: | |
datadog_api_key: ${{ secrets.DD_API_KEY }} | |
chromium_android-x86: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: chromium_android-x86 | |
nightly: ${{ github.event.inputs.nightly }} | |
secrets: | |
datadog_api_key: ${{ secrets.DD_API_KEY }} | |
# Cobalt specific build configs | |
android-arm64: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: android-arm64 | |
nightly: ${{ github.event.inputs.nightly }} | |
secrets: | |
datadog_api_key: ${{ secrets.DD_API_KEY }} | |
android-arm: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: android-arm | |
nightly: ${{ github.event.inputs.nightly }} | |
secrets: | |
datadog_api_key: ${{ secrets.DD_API_KEY }} | |
android-x86: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: android-x86 | |
nightly: ${{ github.event.inputs.nightly }} | |
secrets: | |
datadog_api_key: ${{ secrets.DD_API_KEY }} |