Skip to content

Commit ceba389

Browse files
committed
workflows
1 parent d1ae8dd commit ceba389

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/hipo-macos.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
ls
3636
3737
- name: Install GKLIB
38-
run:
38+
run: |
3939
cd GKlib
4040
cmake -S. -B build \
4141
-DCMAKE_INSTALL_PREFIX=${{ runner.workspace }}/installs \
@@ -110,7 +110,9 @@ jobs:
110110
111111
- name: Install METIS
112112
run: |
113-
cmake -S. -B build \
113+
cmake \
114+
-S $GITHUB_WORKSPACE\METIS \
115+
-B build \
114116
-DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib \
115117
-DCMAKE_INSTALL_PREFIX=${{ runner.workspace }}/installs \
116118
-DCMAKE_BUILD_TYPE=${{ matrix.config }}

.github/workflows/hipo-ubuntu.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
ls
3636
3737
- name: Install GKLIB
38-
run:
38+
run: |
3939
cd GKlib
4040
cmake -S. -B build \
4141
-DCMAKE_INSTALL_PREFIX=${{ runner.workspace }}/installs \
@@ -134,7 +134,9 @@ jobs:
134134
135135
- name: Install METIS
136136
run: |
137-
cmake -S. -B build \
137+
cmake \
138+
-S $GITHUB_WORKSPACE\METIS \
139+
-B build \
138140
-DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib \
139141
-DCMAKE_INSTALL_PREFIX=${{ runner.workspace }}/installs \
140142
-DCMAKE_BUILD_TYPE=${{ matrix.config }}

.github/workflows/hipo-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
cd METIS
9797
pwd
9898
cmake -S. -B build `
99-
-DGKLIB_PATH="env:$GITHUB_WORKSPACE/METIS/GKlib"
99+
-DGKLIB_PATH="${env:$GITHUB_WORKSPACE}/METIS/GKlib"
100100
-DCMAKE_INSTALL_PREFIX="${{ runner.workspace }}/installs" `
101101
-DCMAKE_BUILD_TYPE=${{ matrix.config }}
102102
cmake --build build --parallel --config ${{ matrix.config }}

0 commit comments

Comments
 (0)