forked from youtube/cobalt
-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (49 loc) · 1.21 KB
/
evergreen_22.lts.1+.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: evergreen_22.lts.1+
on:
pull_request:
types: [ready_for_review, opened, reopened, synchronize, labeled]
branches:
- '22.lts.1\+'
push:
branches:
- '22.lts.1\+'
workflow_dispatch:
inputs:
nightly:
description: 'Nightly workflow.'
required: true
type: boolean
default: false
jobs:
evergreen-x64:
uses: ./.github/workflows/main.yaml
permissions:
packages: write
pull-requests: write
with:
platform: evergreen-x64
nightly: ${{ github.event.inputs.nightly }}
evergreen-arm-hardfp:
uses: ./.github/workflows/main.yaml
permissions:
packages: write
pull-requests: write
with:
platform: evergreen-arm-hardfp
nightly: ${{ github.event.inputs.nightly }}
evergreen-arm-softfp:
uses: ./.github/workflows/main.yaml
permissions:
packages: write
pull-requests: write
with:
platform: evergreen-arm-softfp
nightly: ${{ github.event.inputs.nightly }}
evergreen-x86:
uses: ./.github/workflows/main.yaml
permissions:
packages: write
pull-requests: write
with:
platform: evergreen-x86
nightly: ${{ github.event.inputs.nightly }}