File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 18
18
19
19
steps :
20
20
- name : Checkout project
21
- uses : actions/checkout@v2
21
+ uses : actions/checkout@v4
22
22
23
23
- uses : actions/setup-python@v4
24
24
with :
44
44
run : |
45
45
pip3 install --upgrade setuptools
46
46
mkdir -p ./vtk/build
47
- wget https://www.vtk.org/files/release/9.2/VTK-9.2.6.tar.gz # Update this for newer releases of VTK
47
+ if [ "$RUNNER_OS" == "Windows"]; then
48
+ bitsadmin /addfile job1 https://www.vtk.org/files/release/9.2/VTK-9.2.6.tar.gz "${PWD}\\VTK-9.2.6.tar.gz" # Update this for newer releases of VTK
49
+ else
50
+ wget https://www.vtk.org/files/release/9.2/VTK-9.2.6.tar.gz # Update this for newer releases of VTK
51
+ fi
48
52
tar -zxf VTK-9.2.6.tar.gz --directory ./vtk/
49
53
cd ./vtk/build
50
54
cmake -GNinja -DVTK_WHEEL_BUILD=ON -DVTK_WRAP_PYTHON=ON -DCMAKE_BUILD_TYPE=Release ../VTK-9.2.6
Original file line number Diff line number Diff line change 35
35
# ls -ld /tmp/vtk-wheels/*-cp${{ matrix.python-version }}/vtk-*.whl
36
36
37
37
- name : Checkout project
38
- uses : actions/checkout@v2
38
+ uses : actions/checkout@v4
39
39
40
40
# See https://cibuildwheel.readthedocs.io/en/stable/
41
41
# Not usable for now, because cadquery libraries require glibc 2.31,
You can’t perform that action at this time.
0 commit comments