Skip to content

Commit e2c77c6

Browse files
committed
Try to use METIS from Julia
1 parent 7da98b1 commit e2c77c6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/hipo.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ jobs:
5151
steps:
5252
- uses: actions/checkout@v4
5353
- run: |
54-
vcpkg install metis
54+
mkdir installs
55+
curl -L -o installs/METIS.tar.gz `
56+
"https://github.com/JuliaBinaryWrappers/METIS_jll.jl/releases/download/METIS-v5.1.3%2B0/METIS.v5.1.3.x86_64-w64-mingw32.tar.gz"
57+
tar -xzf installs/METIS.tar.gz -C installs
5558
vcpkg install openblas[threads]
5659
cmake -E make_directory build
5760
cd build
@@ -60,6 +63,7 @@ jobs:
6063
-DALL_TESTS=${{ matrix.all_tests }} `
6164
-DHIPO=ON `
6265
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake `
66+
-DMETIS_ROOT=installs `
6367
..
6468
cmake --build . --parallel --config ${{ matrix.build_type }}
6569
ctest -C ${{ matrix.build_type }} --timeout 300 --output-on-failure --no-tests=error

0 commit comments

Comments
 (0)