Skip to content

Commit

Permalink
Update build matrix for Cobalt 24 (#440)
Browse files Browse the repository at this point in the history
Adds builders and cherry-pick workflows for the new branch.

Also remove an odd android.19 still lingering around.

b/260110906
b/284137239
  • Loading branch information
kaidokert authored May 24, 2023
1 parent 880f91c commit 1e7e1a5
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/label-cherry-pick.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
labels=$LABEL_NAME
fi
branches=("23.lts.1+" "22.lts.1+" "21.lts.1+" "20.lts.1+" "19.lts.1+" "19.android.1+" "rc_11" "COBALT_9")
branches=("24.lts.1+" "23.lts.1+" "22.lts.1+" "21.lts.1+" "20.lts.1+" "19.lts.1+" "rc_11" "COBALT_9")
filtered_branches=()
for branch in "${branches[@]}"; do
if [[ $branch == $BASE_REF ]]; then
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/nightly_trigger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ on:
workflow_dispatch:

jobs:
trigger_24:
permissions:
actions: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: kaidokert/[email protected]
with:
fetch-depth: 1
ref: 24.lts.1+
persist-credentials: false
- name: Trigger Nightly
run: |
set -x
gh workflow run android_24.lts.1+ --ref 24.lts.1+ -f nightly=true
gh workflow run evergreen_24.lts.1+ --ref 24.lts.1+ -f nightly=true
gh workflow run linux_24.lts.1+ --ref 24.lts.1+ -f nightly=true
gh workflow run raspi-2_24.lts.1+ --ref 24.lts.1+ -f nightly=true
gh workflow run win32_24.lts.1+ --ref 24.lts.1+ -f nightly=true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
trigger_23:
permissions:
actions: write
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr_badges.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- 'feature/*'
- 'main'
- '24.lts.1\+'
- '23.lts.1\+'
- '22.lts.1\+'
- '21.lts.1\+'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/workflow_trigger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
type: choice
description: Branch
options:
- '24.lts.1+'
- '23.lts.1+'
- '22.lts.1+'
- '21.lts.1+'
Expand Down

0 comments on commit 1e7e1a5

Please sign in to comment.