File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 : |
You can’t perform that action at this time.
0 commit comments