forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 2
50 lines (45 loc) · 1 KB
/
envoy-prechecks.yml
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
name: Envoy/prechecks
permissions:
contents: read
on:
push:
branches:
- main
- release/v*
pull_request:
paths:
- '**/requirements*.txt'
- '**/go.mod'
- '**/*.bzl'
- 'WORKSPACE'
- '.github/workflows/envoy-prechecks.yml'
- '.github/workflows/_*.yml'
concurrency:
group: ${{ github.event.inputs.head_ref || github.run_id }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
env:
uses: ./.github/workflows/_env.yml
with:
prime_build_image: true
check_mobile_run: false
permissions:
contents: read
statuses: write
prechecks:
needs:
- env
strategy:
fail-fast: false
matrix:
include:
- target: deps
rbe: false
managed: true
uses: ./.github/workflows/_ci.yml
name: CI ${{ matrix.target }}
with:
target: ${{ matrix.target }}
rbe: ${{ matrix.rbe }}
managed: ${{ matrix.managed }}
cache_build_image: ${{ needs.env.outputs.build_image_ubuntu }}