Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: Fix failing simd and cygwin tests. #21350

Merged
merged 1 commit into from Apr 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build_test.yml
Expand Up @@ -269,7 +269,9 @@ jobs:
gcc --version &&
g++ --version &&
python3 --version &&
cd /numpy && python3 setup.py install
git config --global --add safe.directory /numpy
cd /numpy &&
python3 setup.py install
"
docker commit the_build the_build
- name: Run SIMD Tests
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cygwin.yml
Expand Up @@ -36,6 +36,7 @@ jobs:
- name: Update with Cygwin git
# fetch-depth=0 above should make this short.
run: |
dash -c "which git; /usr/bin/git config --system --add safe.directory /cygdrive/d/a/numpy/numpy"
dash -c "which git; /usr/bin/git fetch --all -p"
- name: Verify python version
# Make sure it's the Cygwin one, not a Windows one
Expand Down