File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 14
14
git pull --unshallow # need to force this else the prebuild fails
15
15
git fetch --tags
16
16
python setup.py build_ext -j 4
17
- python -m pip install -e . --no-build-isolation
18
17
echo "🛠 Completed rebuilding Pandas!! 🛠 "
19
18
echo "✨ Pre-build complete! You can close this terminal ✨ "
20
19
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ WORKDIR ${WORKSPACE}
34
34
# Build pandas to populate the cache used by ccache
35
35
RUN git config --global --add safe.directory /workspace/pandas
36
36
RUN conda activate ${CONDA_ENV} && \
37
+ python -m pip install -e . --no-build-isolation && \
37
38
python setup.py build_ext --inplace && \
38
39
ccache -s
39
40
@@ -43,4 +44,5 @@ RUN rm -rf ${WORKSPACE}
43
44
44
45
# -----------------------------------------------------------------------------
45
46
# Always return to non privileged user
47
+ RUN chown -R gitpod:gitpod /home/gitpod/.cache/
46
48
USER gitpod
You can’t perform that action at this time.
0 commit comments