skia2/infra/bots/ct/ct_skps.isolate
Ravi Mistry 0ac06e4726 Bot updates for SkiaCT tasks.
Use gcc-4.8 when compiling for Ubuntu14. Rename the CT tasks to make it
clear their child tasks run on Ubuntu14.

Move to Debian-9.1 bots created with the changes in
https://skia-review.googlesource.com/c/31281 and
https://skia-review.googlesource.com/c/31820

Change the cache dir used by the ct_skps recipe so that changing the
bot name doesn't invalidate the cache.

Bug: skia:6921
Bug: skia:6818
No-Try: true
Change-Id: Idaac8187427b5c2c7bffe66ad6674496b8cd0c0e
Reviewed-on: https://skia-review.googlesource.com/31242
Commit-Queue: Ravi Mistry <rmistry@google.com>
Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Reviewed-by: Ravi Mistry <rmistry@google.com>
2017-08-08 14:17:49 +00:00

34 lines
950 B
Plaintext

# Copyright (c) 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'includes': [
'../resources.isolate',
],
'conditions': [
['OS=="linux"', {
'variables': {
'files': [
'<(TOOL_NAME)',
'run_ct_skps.py',
'../../../../skps/<(CHROMIUM_BUILD)/<(PAGE_TYPE)/<(NUM_SLAVES)/slave<(SLAVE_NUM)/',
],
'command': [
'python',
'run_ct_skps.py',
'--slave_num', '<(SLAVE_NUM)',
'--tool', '<(TOOL_NAME)',
'--git_hash', '<(GIT_HASH)',
'--isolated_outdir', '${ISOLATED_OUTDIR}',
'--configuration', '<(CONFIGURATION)',
'--builder', '<(BUILDER)',
'--chromium_build', '<(CHROMIUM_BUILD)',
'--page_type', '<(PAGE_TYPE)',
'--num_slaves', '<(NUM_SLAVES)',
],
},
}],
]
}