Skip to content

Commit daed1f3

Browse files
fpq473fpq473
authored andcommitted
Run build workflow on ubuntu-20.04
Needed to install the built manylinux_2_31 wheel for smoke test.
1 parent 2b1e8c5 commit daed1f3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-wheel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
os: [ 'ubuntu-18.04', 'macos-latest', 'windows-latest' ]
18+
os: [ 'ubuntu-20.04', 'macos-latest', 'windows-latest' ]
1919
python-version: [ '3.8', '3.9', '3.10' ]
2020

2121
steps:
@@ -61,7 +61,7 @@ jobs:
6161
6262
- name: Manylinux Build 1
6363
shell: bash -l {0}
64-
if: ${{ matrix.os == 'ubuntu-18.04' && matrix.python-version != '3.10' }}
64+
if: ${{ matrix.os == 'ubuntu-20.04' && matrix.python-version != '3.10' }}
6565
run: |
6666
export VTK_MANYLINUX=/tmp/vtk-manylinux
6767
pip install -t $VTK_MANYLINUX --no-deps vtk~=9.1.0
@@ -71,15 +71,15 @@ jobs:
7171
# Use pyvista build: https://gitlab.kitware.com/vtk/vtk/-/issues/18335
7272
- name: Manylinux Build 2
7373
shell: bash -l {0}
74-
if: ${{ matrix.os == 'ubuntu-18.04' && matrix.python-version == '3.10' }}
74+
if: ${{ matrix.os == 'ubuntu-20.04' && matrix.python-version == '3.10' }}
7575
run: |
7676
export VTK_MANYLINUX=/tmp/vtk-manylinux
7777
pip install -t $VTK_MANYLINUX --no-deps https://github.com/pyvista/pyvista-wheels/raw/main/vtk-9.1.0.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
7878
python -m build --no-isolation --wheel
7979
8080
- name: Conda-only Build
8181
shell: bash -l {0}
82-
if: ${{ matrix.os != 'ubuntu-18.04' }}
82+
if: ${{ matrix.os != 'ubuntu-20.04' }}
8383
run: |
8484
python -m build --no-isolation --wheel
8585

0 commit comments

Comments
 (0)