371967f791
By using npm ci, we can make sure the versions of the helper libraries (e.g. Karma, Jasmine) we are testing with locally is the same as the versions we are using in the continuous integration system. The copying is needed because our docker recipe forces us to run as not root, and this was causing some issues. As a result, I changed the canvaskit test/perf to not re-use the same file as pathkit does so copying was easier and the dependencies between the two modules is broken. Bug: skia:11077 Change-Id: Ib05890d666d3507d4f724a4ae298484629c7932a Reviewed-on: https://skia-review.googlesource.com/c/skia/+/343503 Reviewed-by: Kevin Lubick <kjlubick@google.com>
28 lines
1.2 KiB
Makefile
28 lines
1.2 KiB
Makefile
gold_docker_image: aggregator
|
|
# Set the build context to the current work dir, so we can copy
|
|
# the built binary to where we need it.
|
|
docker build -t gold-karma-chrome-tests -f ./docker/gold-karma-chrome-tests/Dockerfile .
|
|
|
|
perf_docker_image: aggregator
|
|
# Set the build context to the current work dir, so we can copy
|
|
# the built binary to where we need it.
|
|
docker build -t perf-karma-chrome-tests -f ./docker/perf-karma-chrome-tests/Dockerfile .
|
|
|
|
aggregator:
|
|
mkdir -p ./tmp
|
|
CGO_ENABLED=0 GOOS=linux go build -o ./tmp/gold-aggregator -a ./gold/
|
|
mkdir -p ./tmp
|
|
CGO_ENABLED=0 GOOS=linux go build -o ./tmp/perf-aggregator -a ./perf/
|
|
|
|
# Can check CHROME_VERSION with
|
|
# docker run karma-chrome-tests /usr/bin/google-chrome-stable --version
|
|
CHROME_VERSION=87.0.4280.88_v1
|
|
|
|
publish_gold_karma_chrome_tests: gold_docker_image
|
|
docker tag gold-karma-chrome-tests gcr.io/skia-public/gold-karma-chrome-tests:${CHROME_VERSION}
|
|
docker push gcr.io/skia-public/gold-karma-chrome-tests:${CHROME_VERSION}
|
|
|
|
publish_perf_karma_chrome_tests: perf_docker_image
|
|
docker tag perf-karma-chrome-tests gcr.io/skia-public/perf-karma-chrome-tests:${CHROME_VERSION}
|
|
docker push gcr.io/skia-public/perf-karma-chrome-tests:${CHROME_VERSION}
|