Skip to content

Commit 85942f4

Browse files
authored
Update 32-bit-linux.yml
1 parent fcb653a commit 85942f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/32-bit-linux.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323

2424
- name: Run 32-bit manylinux2014 Docker Build / Tests
2525
run: |
26-
# Without this (line 36), versioneer will not be able to determine the pandas version.
26+
# Without this (line 34), versioneer will not be able to determine the pandas version.
2727
# This is because of a security update to git that blocks it from reading the config folder if
2828
# it is not owned by the current user. We hit this since the "mounted" folder is not hit by the
2929
# Docker container.
3030
# xref https://github.com/pypa/manylinux/issues/1309
3131
docker pull quay.io/pypa/manylinux2014_i686
3232
docker run --platform linux/386 -v $(pwd):/pandas quay.io/pypa/manylinux2014_i686 \
3333
/bin/bash -xc "cd pandas && \
34-
git config --global --add safe.directory . && \
34+
git config --global --add safe.directory /pandas && \
3535
/opt/python/cp38-cp38/bin/python -m venv ~/virtualenvs/pandas-dev && \
3636
. ~/virtualenvs/pandas-dev/bin/activate && \
3737
python -m pip install --no-deps -U pip wheel 'setuptools<60.0.0' && \

0 commit comments

Comments
 (0)