File tree Expand file tree Collapse file tree 2 files changed +63
-1
lines changed
Expand file tree Collapse file tree 2 files changed +63
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments