forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 2
60 lines (54 loc) · 1.3 KB
/
_check_san.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
51
52
53
54
55
56
57
58
59
60
name: Check/san
permissions:
contents: read
on:
workflow_call:
secrets:
gcs-cache-key:
required: true
inputs:
gcs-cache-bucket:
type: string
required: true
request:
type: string
required: true
trusted:
type: boolean
required: true
concurrency:
group: ${{ github.head_ref || github.run_id }}-${{ github.workflow }}-asan
cancel-in-progress: true
jobs:
san:
secrets:
gcs-cache-key: ${{ secrets.gcs-cache-key }}
permissions:
contents: read
packages: read
uses: ./.github/workflows/_run.yml
name: ${{ matrix.target }}
with:
bazel-extra: '--config=remote-envoy-engflow'
cache-build-image: ${{ fromJSON(inputs.request).request.build-image.default }}
concurrency-suffix: -${{ matrix.target }}
request: ${{ inputs.request }}
error-match: |
ERROR
error:
Error:
gcs-cache-bucket: ${{ inputs.gcs-cache-bucket }}
rbe: ${{ matrix.rbe }}
target: ${{ matrix.target }}
timeout-minutes: 180
trusted: ${{ inputs.trusted }}
strategy:
fail-fast: false
matrix:
include:
- target: asan
rbe: true
- target: msan
rbe: true
- target: tsan
rbe: true