Skip to content

Commit 4cc9f76

Browse files
Merge pull request #18 from Geode-solutions/vtk-cpu
fix(CPU): handle vtk cpu
2 parents 3fbca40 + 6ba1ce5 commit 4cc9f76

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.github/workflows/CICD.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,17 @@ on:
66
jobs:
77
test:
88
runs-on: ubuntu-latest
9-
container: ghcr.io/geode-solutions/vtk:3.9-cpu
109
steps:
11-
- uses: actions/checkout@v3
12-
- name: Test
13-
run: |
14-
pip install pytest pytest-xprocess
15-
pip install -e .
16-
pytest
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-python@v5
12+
with:
13+
python-version: "3.9"
14+
- name: Test
15+
run: |
16+
pip install pytest pytest-xprocess
17+
pip install https://www.vtk.org/files/release/9.3/vtk_osmesa-9.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
18+
pip install -e .
19+
pytest
1720
1821
build:
1922
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)