Skip to content

Commit 7adc867

Browse files
committed
fix typo in workflows
1 parent 782c751 commit 7adc867

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/hipo-macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
pwd
3333
cmake -S. -B build -DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs
3434
cmake --build build --parallel --config Release
35-
cmake install --build
35+
cmake --install build
3636
3737
- name: Check METIS
3838
working-directory: ${{runner.workspace}}
@@ -93,7 +93,7 @@ jobs:
9393
pwd
9494
cmake -S. -B build -DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs
9595
cmake --build build --parallel --config Debug
96-
cmake install --build
96+
cmake --install build
9797
9898
- name: Check METIS
9999
working-directory: ${{runner.workspace}}
@@ -155,7 +155,7 @@ jobs:
155155
pwd
156156
cmake -S. -B build -DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs
157157
cmake --build build --parallel --config Release
158-
cmake install --build
158+
cmake --install build
159159
160160
- name: Check METIS
161161
working-directory: ${{runner.workspace}}
@@ -216,7 +216,7 @@ jobs:
216216
pwd
217217
cmake -S. -B build -DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs
218218
cmake --build build --parallel --config Debug
219-
cmake install --build
219+
cmake --install build
220220
221221
- name: Check METIS
222222
working-directory: ${{runner.workspace}}

.github/workflows/hipo-ubuntu.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
pwd
3333
cmake -S. -B build -DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs
3434
cmake --build build --parallel --config Release
35-
cmake install --build
35+
cmake --install build
3636
3737
# no default blas available on runner
3838

@@ -103,7 +103,7 @@ jobs:
103103
pwd
104104
cmake -S. -B build -DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs
105105
cmake --build build --parallel --config Debug
106-
cmake install --build
106+
cmake --install build
107107
108108
- name: Cache APT packages
109109
uses: actions/cache@v4
@@ -172,7 +172,7 @@ jobs:
172172
pwd
173173
cmake -S. -B build -DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs
174174
cmake --build build --parallel --config Release
175-
cmake install --build
175+
cmake --install build
176176
177177
# no default blas available on runner
178178

@@ -242,7 +242,7 @@ jobs:
242242
pwd
243243
cmake -S. -B build -DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs
244244
cmake --build build --parallel --config Debug
245-
cmake install --build
245+
cmake --install build
246246
247247
- name: Cache APT packages
248248
uses: actions/cache@v4

.github/workflows/hipo-win.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
pwd
4444
cmake -S. -B build -DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs
4545
cmake --build build --parallel --config Release
46-
cmake install --build
46+
cmake --install build
4747
4848
- name: Install OpenBLAS
4949
run: vcpkg install openblas
@@ -117,7 +117,7 @@ jobs:
117117
pwd
118118
cmake -S. -B build -DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs
119119
cmake --build build --parallel --config Debug
120-
cmake install --build
120+
cmake --install build
121121
122122
- name: Install OpenBLAS
123123
run: vcpkg install openblas
@@ -191,7 +191,7 @@ jobs:
191191
pwd
192192
cmake -S. -B build -DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs
193193
cmake --build build --parallel --config Release
194-
cmake install --build
194+
cmake --install build
195195
196196
- name: Install OpenBLAS
197197
run: vcpkg install openblas
@@ -266,7 +266,7 @@ jobs:
266266
pwd
267267
cmake -S. -B build -DGKLIB_PATH=${{ github.workspace }}/METIS/GKlib -DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs
268268
cmake --build build --parallel --config Debug
269-
cmake install --build
269+
cmake --install build
270270
271271
- name: Install OpenBLAS
272272
run: vcpkg install openblas

0 commit comments

Comments
 (0)