skia2/infra/bots
brianosman 2c4b64e92a New gamut GM, to test gamut conversion in various code-paths
After several different strategies, this one appears to work
well. The basic test:

1) For a variety of drawing techniques, we render fixed size
   rectangles. (Solid colors via paint color, bitmap, etc...)
2) For each method in #1, we render to both an sRGB and
   WideGamutRGB offscreen surface. (AdobeRGB isn't wide enough
   to clearly demonstrate if things are working or not).
3) Use readPixels to fetch the raw (still in wide gamut) pixel
   data, then draw that directly to the final canvas.

So, for each pair of squares, they should look clearly
different. Currently, with the GPU backend, only the bicubic
bitmap paths have that behavior. Adding more test cases (and
fixing the ones that are already incorrect) will be the long
tail of gamut transformation.

Current output (with my other patchset, which fixes all
bitmap draws): https://screenshot.googleplex.com/wsL3x7eCtWE.png

BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2293173002

Review-Url: https://codereview.chromium.org/2293173002
2016-09-07 07:04:45 -07:00
..
assets Update SKP version 2016-09-04 02:15:51 -07:00
ct Move ct_skps recipe from tools repo to Skia repo. 2016-08-09 13:46:48 -07:00
recipe_modules GN: turn off ccache 2016-09-07 05:12:34 -07:00
recipes New gamut GM, to test gamut conversion in various code-paths 2016-09-07 07:04:45 -07:00
tools/luci-go Add CIPD support for bot assets 2016-06-28 04:41:49 -07:00
android_bin.isolate Support for Android Swarming bots 2016-04-01 07:18:28 -07:00
bootstrap_win_toolchain_json.py Fixes for Win toolchain isolate 2016-03-11 04:54:42 -08:00
compile_skia.isolate Move Skia recipes from build repo 2016-07-26 11:52:17 -07:00
coverage_skia.isolate Add new coverage_skia.isolate 2016-04-18 04:13:48 -07:00
ct_skps_skia.isolate Move ct_skps recipe from tools repo to Skia repo. 2016-08-09 13:46:48 -07:00
housekeeper_skia.isolate Fix Housekeeper-PerCommit 2016-07-27 05:21:45 -07:00
infrabots.isolate Remove tsan.supp. 2016-09-01 14:57:35 -07:00
ios_bin.isolate More iOS swarming bot fixes 2016-04-06 11:38:55 -07:00
perf_skia.isolate Move Skia recipes from build repo 2016-07-26 11:52:17 -07:00
README.md Port Skia recipe to normal Python scripts, move to Skia repo 2016-02-18 08:05:48 -08:00
recipes.py Move Skia recipes from build repo 2016-07-26 11:52:17 -07:00
resources.isolate Swarming bots: setup for skipping download of build products 2016-03-04 04:55:26 -08:00
skia_repo.isolate Fix compile on Windows swarming bot 2016-03-16 07:27:05 -07:00
swarm_recipe.isolate Move Skia recipes from build repo 2016-07-26 11:52:17 -07:00
tasks.json [task scheduler] Fix CIPD package versions 2016-09-02 12:16:56 -07:00
test_skia.isolate Move Skia recipes from build repo 2016-07-26 11:52:17 -07:00
test_utils.py Add asset management scripts 2016-06-15 12:07:42 -07:00
upload_skps.py Move Skia recipes from build repo 2016-07-26 11:52:17 -07:00
utils.py Add CIPD support for bot assets 2016-06-28 04:41:49 -07:00
win_toolchain_utils.py Some fixes for Swarming bots 2016-03-17 09:01:33 -07:00
zip_utils_test.py Add asset management scripts 2016-06-15 12:07:42 -07:00
zip_utils.py add an asset for the Linux Android NDK. 2016-08-26 10:52:19 -07:00

Skia Buildbot Scripts

The scripts in this directory are ported from Skia's buildbot recipes and are intended to run as standalone Python scripts either locally or via Swarming.

How to Run

The scripts can be run by hand, eg:

$ cd infra/bots $ python compile_skia.py Build-Ubuntu-GCC-x86_64-Debug ../../out

Or, you can run the scripts via Swarming:

$ isolate archive --isolate-server https://isolateserver.appspot.com/ -i infra/bots/compile_skia.isolate -s ../compile-skia.isolated --verbose --config-variable BUILDER_NAME=Build-Ubuntu-GCC-x86_64-Debug $ swarming.py run --swarming https://chromium-swarm.appspot.com --isolate-server https://isolateserver.appspot.com --dimension os Ubuntu --dimension pool Skia --task-name compile-skia --io-timeout=3600 --hard-timeout=3600 ../compile-skia.isolated