Skip to content

Commit 02f17f5

Browse files
committed
try vcpkg
1 parent 112ce96 commit 02f17f5

File tree

2 files changed

+63
-1
lines changed

2 files changed

+63
-1
lines changed

.github/workflows/proto-win.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: proto-win
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
release:
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
os: [windows-latest]
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Install METIS
17+
run: vcpkg install metis
18+
19+
# repository: KarypisLab/GKlib
20+
# ref: master
21+
# path: GKlib
22+
23+
# - name: Checkout METIS
24+
# uses: actions/checkout@v4
25+
# with:
26+
# repository: KarypisLab/METIS
27+
# ref: master
28+
# path: METIS
29+
30+
# - name: Create installs dir
31+
# working-directory: ${{runner.workspace}}
32+
# run: |
33+
# mkdir installs
34+
# ls
35+
36+
# - name: Install GKLIB
37+
# run: |
38+
# cd GKlib
39+
# make config prefix=${{runner.workspace}}/installs
40+
# make
41+
# make install
42+
43+
# - name: Install METIS
44+
# run: |
45+
# cd METIS
46+
# make config prefix=${{runner.workspace}}/installs
47+
# make
48+
# make install
49+
50+
51+
# - name: Check METIS and GKlib
52+
# working-directory: ${{runner.workspace}}
53+
# run: |
54+
# cd installs
55+
# ls
56+
# ls lib
57+
58+
# - name: Install OpenBLAS
59+
# shell: bash
60+
# run: |
61+
# sudo apt update
62+
# sudo apt install libopenblas-dev

.github/workflows/proto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
os: [ubuntu-latest]
11+
os: [ubuntu-latest, macos-latest]
1212

1313
steps:
1414
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)