Skip to content

Instantly share code, notes, and snippets.

@jcgregorio
Created October 7, 2019 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcgregorio/feb983106602f26d7b526ebf5a755b1c to your computer and use it in GitHub Desktop.
Save jcgregorio/feb983106602f26d7b526ebf5a755b1c to your computer and use it in GitHub Desktop.
steps:
# To test locally, first uncomment the last two lines of this comment block, then submit with:
#
# gcloud builds submit --config cloudbuild.yaml .
- name: 'gcr.io/cloud-builders/docker'
args: ['build', '.']
timeout: 7200s
timeout: 7200s
options:
env: # https://bugs.chromium.org/p/chromium/issues/detail?id=993053#c3
- 'VPYTHON_VIRTUALENV_ROOT=/workspace/__cache'
- 'CIPD_CACHE_DIR=/workspace/__cache'
FROM debian:testing-slim
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
git \
python \
curl
RUN mkdir -p --mode=0777 /workspace/__cache \
&& groupadd -g 2000 skia \
&& useradd -u 2000 -g 2000 --home /workspace/__cache skia
ENV VPYTHON_VIRTUALENV_ROOT /workspace/__cache
ENV CIPD_CACHE_DIR /workspace/__cache
USER skia
RUN printenv \
&& cd /tmp \
&& git clone 'https://chromium.googlesource.com/chromium/tools/depot_tools.git' \
&& mkdir -p /tmp/skia \
&& cd /tmp/skia \
&& export PATH=$PATH:/tmp/depot_tools \
&& touch noop.py \
&& vpython noop.py \
&& ls -al /tmp/depot_tools \
&& /tmp/depot_tools/fetch skia \
&& ls -al /workspace/__cache \
&& printenv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment