We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c9319c commit 442967eCopy full SHA for 442967e
.github/workflows/ci.yml
@@ -116,7 +116,11 @@ jobs:
116
arch: none
117
distro: none
118
base_image: "--platform=linux/arm64 quay.io/pypa/manylinux2014_aarch64"
119
+ # versioningit needs an accessible git repository but the container
120
+ # is run as root, which is different from the repository user.
121
+ # use git config to override this.
122
run: |-
123
+ git config --global --add safe.directory $PWD
124
CFLAGS="-DNDEBUG -g0" python${{matrix.python_version}} -m pip install . pytest
125
python${{matrix.python_version}} -m pytest tests
126
0 commit comments