-
Notifications
You must be signed in to change notification settings - Fork 127
56 lines (54 loc) · 1.32 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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
chromium_linux-x64:
uses: ./.github/workflows/main.yaml
permissions:
packages: write
pull-requests: write
with:
platform: chromium_linux
nightly: ${{ github.event.inputs.nightly }}
secrets:
datadog_api_key: ${{ secrets.DD_API_KEY }}
# This is default Cobalt build config
linux:
uses: ./.github/workflows/main.yaml
permissions:
packages: write
pull-requests: write
with:
platform: linux
nightly: ${{ github.event.inputs.nightly }}
secrets:
datadog_api_key: ${{ secrets.DD_API_KEY }}
# This is cobalt on linux using evergreen build config
linux-evergreen:
uses: ./.github/workflows/main.yaml
permissions:
packages: write
pull-requests: write
with:
platform: linux-evergreen
nightly: ${{ github.event.inputs.nightly }}
secrets:
datadog_api_key: ${{ secrets.DD_API_KEY }}