-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathcloudbuild.yaml
More file actions
41 lines (41 loc) · 1.31 KB
/
cloudbuild.yaml
File metadata and controls
41 lines (41 loc) · 1.31 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
steps:
- name: 'gcr.io/cel-analysis/gcc9@sha256:4d5ff2e55224398807235a44b57e9c5793e922ac46e9ff428536bb8f8e5790ce'
args:
- '--output_base=/bazel' # This is mandatory to avoid steps accidently sharing data.
- 'test'
- '...'
- '--enable_bzlmod'
- '--copt=-Wno-deprecated-declarations'
- '--compilation_mode=fastbuild'
- '--test_output=errors'
- '--show_timestamps'
- '--test_tag_filters=-benchmark,-notap'
- '--jobs=HOST_CPUS*.5'
- '--local_ram_resources=HOST_RAM*.4'
- '--remote_cache=https://storage.googleapis.com/cel-cpp-remote-cache'
- '--google_default_credentials'
id: gcc-9
waitFor: ['-']
- name: 'gcr.io/cel-analysis/gcc9@sha256:4d5ff2e55224398807235a44b57e9c5793e922ac46e9ff428536bb8f8e5790ce'
env:
- 'CC=clang-11'
- 'CXX=clang++-11'
args:
- '--output_base=/bazel' # This is mandatory to avoid steps accidently sharing data.
- 'test'
- '...'
- '--enable_bzlmod'
- '--copt=-Wno-deprecated-declarations'
- '--compilation_mode=fastbuild'
- '--test_output=errors'
- '--show_timestamps'
- '--test_tag_filters=-benchmark,-notap'
- '--jobs=HOST_CPUS*.5'
- '--local_ram_resources=HOST_RAM*.4'
- '--remote_cache=https://storage.googleapis.com/cel-cpp-remote-cache'
- '--google_default_credentials'
id: clang-11
waitFor: ['-']
timeout: 1h
options:
machineType: 'E2_HIGHCPU_32'