Cherry pick PR #2763: Add linux-64x11 as linux's elf loader. #1940
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: android_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: | |
android-arm64: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: android-arm64 | |
nightly: ${{ github.event.inputs.nightly }} | |
android-x86: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: android-x86 | |
nightly: ${{ github.event.inputs.nightly }} | |
android-arm: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: android-arm | |
nightly: ${{ github.event.inputs.nightly }} |