Skip to content

Commit e29c81a

Browse files
committed
disable vcpkg workflow and use bash
1 parent f367cbe commit e29c81a

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/hipo-win-vcpkg.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: hipo-win-vcpkg
22

3-
on: [push, pull_request]
3+
# on: [push, pull_request]
4+
on: []
45

56
jobs:
67
release:

.github/workflows/hipo-win.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,27 +29,33 @@ jobs:
2929

3030
- name: Create installs dir
3131
working-directory: ${{runner.workspace}}
32+
shell: bash
3233
run: |
3334
mkdir installs
3435
ls
3536
3637
- name: Install GKLIB
38+
working-directory: ${{runner.workspace}}
39+
shell: bash
3740
run: |
3841
cd GKlib
3942
cmake -S. -B build -DCMAKE_INSTALL_PREFIX==${{runner.workspace}}/installs
4043
cmake --build build --config Release
41-
cmake --install build
44+
cmake --install build
4245
4346
- name: Check GKlib
4447
working-directory: ${{runner.workspace}}
4548
run: |
4649
cd installs
4750
ls
48-
ls lib
51+
ls Release/lib
4952
5053
- name: Install METIS
5154
run: |
5255
cd METIS
56+
cmake -S. -B build -DCMAKE_INSTALL_PREFIX==${{runner.workspace}}/installs
57+
cmake --build build --config Release
58+
cmake --install build
5359
make config prefix=${{runner.workspace}}/installs
5460
make
5561
make install

0 commit comments

Comments
 (0)