Skip to content

Commit ceaaf0b

Browse files
committed
WITH_METIS
1 parent a49a142 commit ceaaf0b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/building.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ jobs:
5656
- name: Install main package for CPU
5757
if: ${{ matrix.cuda-version == 'cpu' }}
5858
run: |
59-
FORCE_ONLY_CPU=1 pip install -e .
59+
FORCE_ONLY_CPU=1 WITH_METIS=1 pip install -e .
6060
shell:
6161
bash
6262

6363
- name: Install main package for GPU
6464
if: ${{ matrix.cuda-version != 'cpu' }}
6565
run: |
6666
source .github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}-env.sh
67-
FORCE_CUDA=1 pip install -e .
67+
FORCE_CUDA=1 WITH_METIS=1 pip install -e .
6868
shell:
6969
bash
7070

.github/workflows/testing.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@ jobs:
3030
3131
- name: Install internal dependencies
3232
run: |
33-
pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-${{ matrix.torch-version }}+${{ matrix.cuda-version }}.html
33+
pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-${{ matrix.torch-version }}+cpu.html
3434
3535
- name: Install main package
3636
run: |
3737
pip install -e .[test]
38+
env:
39+
WITH_METIS: 1
3840

3941
- name: Run test-suite
4042
run: |

0 commit comments

Comments
 (0)