Home
last modified time | relevance | path

Searched refs:docker (Results 1 - 25 of 27) sorted by relevance

12

/third_party/skia/infra/wasm-common/docker/
H A DMakefile4 # docker run karma-chrome-tests /usr/bin/google-chrome-stable --version
8 docker build --no-cache -t emsdk-base ./emsdk-base/
9 docker tag emsdk-base gcr.io/skia-public/emsdk-base:${EMSDK_VERSION}
10 docker push gcr.io/skia-public/emsdk-base:${EMSDK_VERSION}
11 docker tag emsdk-base gcr.io/skia-public/emsdk-base:prod
12 docker push gcr.io/skia-public/emsdk-base:prod
15 docker build --no-cache -t karma-chrome-tests ./karma-chrome-tests/
16 docker tag karma-chrome-tests gcr.io/skia-public/karma-chrome-tests:${CHROME_VERSION}
17 docker push gcr.io/skia-public/karma-chrome-tests:${CHROME_VERSION}
/third_party/skia/infra/wasm-common/
H A DMakefile4 docker build -t gold-karma-chrome-tests -f ./docker/gold-karma-chrome-tests/Dockerfile .
9 docker build -t perf-karma-chrome-tests -f ./docker/perf-karma-chrome-tests/Dockerfile .
18 # docker run karma-chrome-tests /usr/bin/google-chrome-stable --version
22 docker tag gold-karma-chrome-tests gcr.io/skia-public/gold-karma-chrome-tests:${CHROME_VERSION}
23 docker push gcr.io/skia-public/gold-karma-chrome-tests:${CHROME_VERSION}
26 docker tag perf-karma-chrome-tests gcr.io/skia-public/perf-karma-chrome-tests:${CHROME_VERSION}
27 docker push gcr.io/skia-public/perf-karma-chrome-tests:${CHROME_VERSION}
/third_party/skia/docker/
H A DMakefile4 docker build -t skia-build-tools ./skia-build-tools
5 docker tag skia-build-tools gcr.io/skia-public/skia-build-tools:latest
6 docker push gcr.io/skia-public/skia-build-tools:latest
11 docker build --no-cache --tag cmake-release ./cmake-release
12 docker tag cmake-release gcr.io/skia-public/cmake-release:${CMAKE_VERSION}
13 docker push gcr.io/skia-public/cmake-release:${CMAKE_VERSION
/third_party/rust/crates/libc/ci/
H A Drun-docker.sh3 # Disable SC2086 as it confuses the docker command.
7 # respective docker images.
23 docker system prune -af
24 docker system df
28 echo "Building docker container for target ${1}"
31 docker build -t libc -f "ci/docker/${1}/Dockerfile" ci/
39 docker run \
58 echo "Building docker container for target switch"
61 docker buil
[all...]
/third_party/protobuf/python/release/wheel/
H A Dbuild_wheel_manylinux.sh24 docker rmi protobuf-python-wheel
25 docker build . -t protobuf-python-wheel
26 docker run --rm protobuf-python-wheel ./protobuf_optimized_pip.sh $PROTOBUF_VERSION $PYPI_USERNAME $PYPI_PASSWORD
27 docker rmi protobuf-python-wheel
/third_party/skia/modules/pathkit/
H A DMakefile51 # Build the library and run the tests using the docker image. If developing locally,
52 # test-docker-continuous is better, although if you make changes to the C++/WASM code,
54 test-docker:
59 docker run --rm -v $$SKIA_ROOT:/SRC -v $$SKIA_ROOT/out/dockerbuild:/OUT \
64 docker run --rm -v $$SKIA_ROOT:/SRC -v $$SKIA_ROOT/out/dockerbuild:/OUT \
69 docker run --shm-size=2gb -v $$SKIA_ROOT:/SRC gcr.io/skia-public/karma-chrome-tests:72.0.3626.121_v1 \
71 docker run --shm-size=2gb -v $$SKIA_ROOT:/SRC -e ASM_JS=1 gcr.io/skia-public/karma-chrome-tests:72.0.3626.121_v1 \
74 test-docker-continuous:
76 docker run --shm-size=2gb -v $$SKIA_ROOT:/SRC gcr.io/skia-public/karma-chrome-tests:72.0.3626.121_v1 \
79 test-docker
[all...]
/third_party/libbpf/ci/managers/
H A Ddebian.sh7 DOCKER_RUN="${DOCKER_RUN:-docker run}"
22 docker exec $ENV_VARS $CONT_NAME "$@"
35 docker --version
37 docker pull debian:$DEBIAN_RELEASE
88 docker stop $CONT_NAME
89 docker rm -f $CONT_NAME
/third_party/skia/infra/bots/recipe_modules/docker/examples/
H A Dfull.py8 'docker',
18 api.docker.run(
20 docker_image='my.docker.image',
24 args=['--src', api.docker.mount_src(), '--out', api.docker.mount_out()],
/third_party/skia/infra/canvaskit/docker/
H A DMakefile4 docker build -t canvaskit-emsdk ./canvaskit-emsdk/
5 docker tag canvaskit-emsdk gcr.io/skia-public/canvaskit-emsdk:${EMSDK_VERSION}
6 docker push gcr.io/skia-public/canvaskit-emsdk:${EMSDK_VERSION}
/third_party/skia/infra/lottiecap/
H A DMakefile1 gold-docker-image: aggregator
4 docker build -t gold-lottie-web-puppeteer -f ./docker/gold-lottie-web-puppeteer/Dockerfile .
/third_party/skia/infra/bots/recipe_modules/flavor/
H A Ddocker.py34 (self.m.docker.mount_out(), str(self.m.vars.swarming_out_dir)),
35 (self.m.docker.mount_src(), str(self.m.path['start_dir'])),
63 args = [self.m.docker.mount_src(), 'catchsegv', app] + [
65 self.m.docker.run('symbolized %s in Docker' % name, image_hash,
H A Dapi.py14 from . import docker namespace
67 return docker.DockerFlavor(self, app_name)
/third_party/mbedtls/tests/scripts/
H A Ddocker_env.sh39 # Make sure docker is available
40 if ! which docker > /dev/null; then
41 echo "Docker is required but doesn't seem to be installed. See https://www.docker.com/ to get started"
45 # Figure out if we need to 'sudo docker'
46 if groups | grep docker > /dev/null; then
47 DOCKER="docker"
49 echo "Using sudo to invoke docker since you're not a member of the docker group..."
50 DOCKER="sudo docker"
61 echo "Getting docker imag
[all...]
/third_party/skia/infra/bots/recipe_modules/build/
H A Dapi.py16 from . import docker namespace
44 self.compile_fn = docker.compile_fn
45 self.copy_fn = docker.copy_build_products
H A Ddocker.py70 script = api.build.resource('docker-compile.sh')
71 api.docker.run('Run build script in Docker', image_hash,
H A Dflutter.py28 script = api.build.resource('docker-flutter-compile.sh')
30 api.docker.run('Run build script in Docker', image_hash,
/third_party/skia/infra/bots/task_drivers/compile_wasm_gm_tests/
H A Dcompile_wasm_gm_tests.go18 "go.skia.org/infra/task_driver/go/lib/docker"
34 workPath = flag.String("work_path", "", "The directory to use to store temporary files (e.g. docker build)")
74 func setupDocker(ctx context.Context, isLocal bool) (*docker.Docker, error) {
75 ctx = td.StartStep(ctx, td.Props("setup docker").Infra())
83 return docker.New(ctx, ts)
/third_party/skia/third_party/externals/spirv-tools/kokoro/scripts/linux/
H A Dbuild.sh29 docker run --rm -i \
40 --entrypoint "${SCRIPT_DIR}/build-docker.sh" \
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/scripts/linux/
H A Dbuild.sh29 docker run --rm -i \
40 --entrypoint "${SCRIPT_DIR}/build-docker.sh" \
/third_party/spirv-tools/kokoro/scripts/linux/
H A Dbuild.sh42 docker run --rm -i \
54 --entrypoint "${SCRIPT_DIR}/build-docker.sh" \
/third_party/skia/infra/bots/recipes/
H A Dperf_pathkit.py5 # Recipe which runs the PathKit tests using docker
11 'docker',
37 # the test files to load, so we must copy them there (see Set up for docker).
83 api.docker.run(
H A Dtest_lottie_web.py5 # Recipe which generates the Gold images for lottie-web using docker
11 'docker',
26 LOTTIECAP_SCRIPT = 'skia/infra/lottiecap/docker/lottiecap_gold.sh'
38 # the docker image.
79 api.docker.run(
H A Dtest_canvaskit.py5 # Recipe which runs the Canvaskit tests using docker
11 'docker',
36 # the test files to load, so we must copy them there (see Set up for docker).
67 api.docker.run(
H A Dtest_pathkit.py5 # Recipe which runs the PathKit tests using docker
11 'docker',
37 # the test files to load, so we must copy them there (see Set up for docker).
85 api.docker.run(
/third_party/skia/modules/canvaskit/
H A DMakefile113 docker-compile:
115 docker run --rm --volume ${SKIA_ROOT}:/SRC \

Completed in 8 milliseconds

12