diff options
author | Thomas J. Fan <thomasjpfan@gmail.com> | 2021-04-11 10:24:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-11 16:24:49 +0200 |
commit | 4a53ea1ce65536748e68b7ab76779b9bb72e4619 (patch) | |
tree | 4838a05af4b5da70c177590020b3adb80c4fca14 /.gitpod.yml | |
parent | 36eb76c9ded81c6626a86aa06d137dd800350751 (diff) | |
download | numpy-4a53ea1ce65536748e68b7ab76779b9bb72e4619.tar.gz |
DEV: add Gitpod to numpy (#18733)
Diffstat (limited to '.gitpod.yml')
-rw-r--r-- | .gitpod.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 000000000..c1755607b --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,10 @@ +image: thomasjpfan/numpy-gitpod:latest +tasks: + # The base image complied numpy with ccache enabled. This second build + # should be faster since it is using the cache. + - init: python setup.py build_ext -i + +github: + prebuilds: + master: true + branches: true |