Skip to content

Commit eaf95ff

Browse files
committed
TST: Move rebase command to a separate file.
I really need to look up PowerShell syntax.
1 parent ce46874 commit eaf95ff

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/cygwin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
bash -c "/usr/bin/python3.8 -m pip install dist/numpy-*cp38*.whl"
5252
- name: Rebase NumPy compiled extensions
5353
run: |
54-
bash -c "/usr/bin/rebase --database --oblivious $(/bin/dash tools/list_numpy_dlls.sh 3.8)"
54+
dash "tools/rebase_installed_dlls_cygwin.sh" 3.8
5555
- name: Run NumPy test suite
5656
run: >-
5757
dash -c "/usr/bin/python3.8 runtests.py -n -vv"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/dash
2+
# Rebase the dlls installed by NumPy
3+
4+
py_ver=${1}
5+
/usr/bin/rebase --database --oblivious `/bin/dash tools/list_numpy_dlls.sh ${py_ver}`

0 commit comments

Comments
 (0)