Skip to content

Commit 7547cd1

Browse files
committed
unit workflows
1 parent a20f928 commit 7547cd1

File tree

2 files changed

+4
-49
lines changed

2 files changed

+4
-49
lines changed

.github/workflows/hipo-macos.yml

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -34,45 +34,20 @@ jobs:
3434
mkdir installs
3535
ls
3636
37-
- name: Install GKlib Release
38-
if: ${{ matrix.config == 'Release' }}
37+
- name: Install GKlib
3938
run: |
4039
cd GKlib
4140
make config prefix=${{runner.workspace}}/installs
4241
make
4342
make install
4443
45-
- name: Install GKlib Debug
46-
if: ${{ matrix.config == 'Debug' }}
47-
run: |
48-
cd GKlib
49-
make config prefix=${{runner.workspace}}/installs gdb=1 debug=1
50-
make
51-
make install
52-
53-
- name: Install METIS Release
54-
if: ${{ matrix.config == 'Release'}}
44+
- name: Install METIS
5545
run: |
5646
cd METIS
5747
make config prefix=${{runner.workspace}}/installs
5848
make
5949
make install
6050
61-
- name: Install METIS Debug
62-
if: ${{ matrix.config == 'Debug'}}
63-
run: |
64-
cd METIS
65-
make config prefix=${{runner.workspace}}/installs gdb=1 debug=1
66-
make
67-
make install
68-
69-
- name: Check METIS and GKlib
70-
working-directory: ${{runner.workspace}}
71-
run: |
72-
cd installs
73-
ls
74-
ls lib
75-
7651
- name: Check METIS and GKlib
7752
working-directory: ${{runner.workspace}}
7853
run: |

.github/workflows/hipo-ubuntu.yml

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -34,24 +34,13 @@ jobs:
3434
mkdir installs
3535
ls
3636
37-
- name: Install GKlib Release
38-
working-directory: GKlib
39-
if: ${{ matrix.config == 'Release' }}
37+
- name: Install GKlib
4038
run: |
4139
cd GKlib
4240
make config shared=1 prefix=${{runner.workspace}}/installs
4341
make
4442
make install
4543
46-
- name: Install GKlib Debug
47-
working-directory: GKlib
48-
if: ${{ matrix.config == 'Debug' }}
49-
run: |
50-
cd GKlib
51-
make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1
52-
make
53-
make install
54-
5544
# - name: Check installs
5645
# working-directory: ${{runner.workspace}}
5746
# run: |
@@ -67,22 +56,13 @@ jobs:
6756
ln libGKlib.so.0 libGKlib.so
6857
ls
6958
70-
- name: Install METIS Release
71-
if: ${{ matrix.config == 'Release'}}
59+
- name: Install METIS
7260
run: |
7361
cd METIS
7462
make config shared=1 prefix=${{runner.workspace}}/installs
7563
make
7664
make install
7765
78-
- name: Install METIS Debug
79-
if: ${{ matrix.config == 'Debug'}}
80-
run: |
81-
cd METIS
82-
make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1
83-
make
84-
make install
85-
8666
# no default blas available on runner
8767

8868
- name: Cache APT packages

0 commit comments

Comments
 (0)