mirror of https://github.com/google/oss-fuzz.git
Restore machine type for base images. (#7652)
* Restore machine type for base images. This was removed when moving project builds to private pools. * format
This commit is contained in:
parent
03719efa0a
commit
2fe4371409
|
@ -100,7 +100,10 @@ def run_build(steps, images, tags=None, build_version=MAJOR_TAG):
|
|||
"""Execute the retrieved build steps in gcb."""
|
||||
credentials, _ = google.auth.default()
|
||||
body_overrides = {
|
||||
'images': images + [f'{image}:{build_version}' for image in images]
|
||||
'images': images + [f'{image}:{build_version}' for image in images],
|
||||
'options': {
|
||||
'machineType': 'E2_HIGHCPU_32'
|
||||
},
|
||||
}
|
||||
return build_lib.run_build(steps,
|
||||
credentials,
|
||||
|
|
Loading…
Reference in New Issue