forked from youtube/cobalt_sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (39 loc) · 887 Bytes
/
linux.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
name: linux
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:
# This is default Chromium build config
linux-x64:
uses: ./.github/workflows/main.yaml
permissions:
packages: write
pull-requests: write
with:
platform: linux
nightly: ${{ github.event.inputs.nightly }}
# This is default Cobalt build config
linux-cobalt:
uses: ./.github/workflows/main.yaml
permissions:
packages: write
pull-requests: write
with:
platform: linux-cobalt
nightly: ${{ github.event.inputs.nightly }}