We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d740c0e commit 4e746e8Copy full SHA for 4e746e8
.github/workflows/hipo-win.yml
@@ -18,7 +18,7 @@ jobs:
18
with:
19
repository: KarypisLab/GKlib
20
ref: master
21
- path: GKlib
+ path: ${{runner.workspace}}/GKlib
22
23
- name: Checkout METIS
24
uses: actions/checkout@v4
@@ -34,10 +34,12 @@ jobs:
34
ls
35
36
- name: Install GKLIB
37
+ working-directory: ${{runner.workspace}}
38
+ shell: bash
39
run: |
40
pwd
41
cd GKlib
- cmake -S. -B build -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs -DCMAKE_C_FLAGS="-I .\include\win32"
42
+ cmake -S. -B build -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs -DCMAKE_C_FLAGS="-I ${{runner.workspace}}\GKlib\include\win32"
43
cmake --build build --parallel --config Release
44
cmake --install --build
45
0 commit comments