forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (44 loc) · 1.08 KB
/
_check_runtime.yml
File metadata and controls
49 lines (44 loc) · 1.08 KB
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
name: Check/runtime
permissions:
contents: read
on:
workflow_call:
inputs:
request:
type: string
required: true
trusted:
type: boolean
required: true
concurrency:
group: ${{ github.head_ref || github.run_id }}-${{ github.workflow }}-runtime
cancel-in-progress: true
jobs:
runtime:
permissions:
actions: read
contents: read
packages: read
uses: ./.github/workflows/_run.yml
name: ${{ matrix.name ||matrix.target }}
with:
bazel-cache: true
bazel-extra: '--config=rbe'
cache-build-image: ${{ fromJSON(inputs.request).request.build-image.default }}
concurrency-suffix: -${{ matrix.target }}
docker-cpus: ${{ matrix.docker-cpus }}
error-match: |
ERROR
error:
Error:
request: ${{ inputs.request }}
target: ${{ matrix.target }}
timeout-minutes: 180
trusted: ${{ inputs.trusted }}
strategy:
fail-fast: false
matrix:
include:
- target: cpu-detection
name: CPU detection
docker-cpus: 2