This minor change reduces the presubmit build time by about 10 to 15 minutes. Change-Id: I3a87d1a720b17fd22a9dbdbeebfb32e4be178c56 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/27064 Tested-by: Gem5 Cloud Project GCB service account <345032938727@cloudbuild.gserviceaccount.com> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Gabe Black <gabeblack@google.com> Maintainer: Jason Lowe-Power <power.jg@gmail.com>
32 lines
1006 B
YAML
32 lines
1006 B
YAML
steps:
|
|
|
|
- name: 'gcr.io/cloud-builders/docker'
|
|
entrypoint: 'bash'
|
|
args:
|
|
- '-c'
|
|
- |
|
|
docker pull gcr.io/$PROJECT_ID/ubuntu-18.04_all-dependencies:latest \
|
|
|| exit 0
|
|
|
|
- name: 'gcr.io/cloud-builders/docker'
|
|
args: ['build',
|
|
'-t',
|
|
'gcr.io/$PROJECT_ID/ubuntu-18.04_all-dependencies:latest',
|
|
'--cache-from',
|
|
'gcr.io/$PROJECT_ID/ubuntu-18.04_all-dependencies:latest',
|
|
'util/dockerfiles/ubuntu-18.04_all-dependencies']
|
|
|
|
- name: 'gcr.io/$PROJECT_ID/ubuntu-18.04_all-dependencies:latest'
|
|
entrypoint: 'scons'
|
|
args: ['build/NULL/unittests.opt', '-j', '4']
|
|
|
|
- name: 'gcr.io/$PROJECT_ID/ubuntu-18.04_all-dependencies:latest'
|
|
dir: 'tests'
|
|
entrypoint: 'python'
|
|
args: ['main.py', 'run', '-j', '4', '-t', '8', '--length', 'quick']
|
|
|
|
images: ['gcr.io/$PROJECT_ID/ubuntu-18.04_all-dependencies:latest']
|
|
options:
|
|
machineType: 'N1_HIGHCPU_8'
|
|
timeout: 18000s # 5 Hours
|