We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7da98b1 commit e2c77c6Copy full SHA for e2c77c6
1 file changed
.github/workflows/hipo.yml
@@ -51,7 +51,10 @@ jobs:
51
steps:
52
- uses: actions/checkout@v4
53
- run: |
54
- vcpkg install metis
+ 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
58
vcpkg install openblas[threads]
59
cmake -E make_directory build
60
cd build
@@ -60,6 +63,7 @@ jobs:
63
-DALL_TESTS=${{ matrix.all_tests }} `
61
64
-DHIPO=ON `
62
65
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake `
66
+ -DMETIS_ROOT=installs `
67
..
68
cmake --build . --parallel --config ${{ matrix.build_type }}
69
ctest -C ${{ matrix.build_type }} --timeout 300 --output-on-failure --no-tests=error
0 commit comments