@@ -15,21 +15,21 @@ jobs:
1515
1616 strategy :
1717 matrix :
18- os : [ 'ubuntu-20 .04', 'macos-11', 'windows-2019' ]
18+ os : [ 'ubuntu-22 .04', 'macos-11', 'windows-2019' ]
1919 python-version : [ '3.8', '3.9', '3.10', '3.11' ]
2020
2121 steps :
2222
2323 # see https://github.com/marketplace/actions/download-workflow-artifact
2424 - name : Download artifact
2525 uses : dawidd6/action-download-artifact@v2
26- if : ${{ matrix.os == 'ubuntu-20 .04' }}
26+ if : ${{ matrix.os == 'ubuntu-22 .04' }}
2727 with :
2828 workflow : build-vtk.yml
2929 path : /tmp/vtk-wheels
3030
3131 - name : List downloaded wheels
32- if : ${{ matrix.os == 'ubuntu-20 .04' }}
32+ if : ${{ matrix.os == 'ubuntu-22 .04' }}
3333 run : |
3434 find /tmp/vtk-wheels -ls
3535 ls -ld /tmp/vtk-wheels/*-cp${{ matrix.python-version }}/vtk-*.whl
@@ -63,13 +63,13 @@ jobs:
6363 fi
6464
6565 - name : Conda Deps Setup
66- if : ${{ matrix.os != 'ubuntu-20 .04' }}
66+ if : ${{ matrix.os != 'ubuntu-22 .04' }}
6767 shell : bash -l {0}
6868 run : |
6969 conda install -c cadquery -n cadquery-ocp -y ocp==7.7.1.* vtk=9.2.*
7070
7171 - name : Conda Deps Setup Linux
72- if : ${{ matrix.os == 'ubuntu-20 .04' }}
72+ if : ${{ matrix.os == 'ubuntu-22 .04' }}
7373 shell : bash -l {0}
7474 run : |
7575 conda install -c cadquery -n cadquery-ocp -y ocp==7.7.1.* vtk=9.2.* occt=7.7.1.*
@@ -82,21 +82,21 @@ jobs:
8282
8383 - name : Pip Deps Setup 2
8484 shell : bash -l {0}
85- if : ${{ matrix.os == 'ubuntu-20 .04' }}
85+ if : ${{ matrix.os == 'ubuntu-22 .04' }}
8686 run : |
8787 pip install auditwheel patchelf
8888
8989 - name : Manylinux Build 1
9090 shell : bash -l {0}
91- if : ${{ matrix.os == 'ubuntu-20 .04' }}
91+ if : ${{ matrix.os == 'ubuntu-22 .04' }}
9292 run : |
9393 export VTK_MANYLINUX=/tmp/vtk-manylinux
9494 pip install -t $VTK_MANYLINUX --no-deps /tmp/vtk-wheels/*-cp${{ matrix.python-version }}/vtk-*.whl
9595 python -m build --no-isolation --wheel
9696
9797 - name : Conda-only Build
9898 shell : bash -l {0}
99- if : ${{ matrix.os != 'ubuntu-20 .04' }}
99+ if : ${{ matrix.os != 'ubuntu-22 .04' }}
100100 run : |
101101 python -m build --no-isolation --wheel
102102
0 commit comments