Skip to content

Commit fee4bb0

Browse files
committed
tests
1 parent 59673e3 commit fee4bb0

File tree

3 files changed

+38
-35
lines changed

3 files changed

+38
-35
lines changed

.github/workflows/hipo-macos-gh.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -44,36 +44,36 @@ jobs:
4444
ls
4545
4646
- name: Install GKlib Release
47-
if: ${{ matrix.config == 'Release' }}
47+
# if: ${{ matrix.config == 'Release' }}
4848
run: |
4949
cd GKlib
50-
make config shared=1 prefix=${{runner.workspace}}/installs
50+
make config prefix=${{runner.workspace}}/installs
5151
make
5252
make install
5353
54-
- name: Install GKlib Debug
55-
if: ${{ matrix.config == 'Debug' }}
56-
run: |
57-
cd GKlib
58-
make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1
59-
make
60-
make install
54+
# - name: Install GKlib Debug
55+
# if: ${{ matrix.config == 'Debug' }}
56+
# run: |
57+
# cd GKlib
58+
# make config prefix=${{runner.workspace}}/installs gdb=1 debug=1
59+
# make
60+
# make install
6161

6262
- name: Install METIS Release
63-
if: ${{ matrix.config == 'Release'}}
63+
# if: ${{ matrix.config == 'Release'}}
6464
run: |
6565
cd METIS
66-
make config shared=1 prefix=${{runner.workspace}}/installs
66+
make config prefix=${{runner.workspace}}/installs
6767
make
6868
make install
6969
70-
- name: Install METIS Debug
71-
if: ${{ matrix.config == 'Debug'}}
72-
run: |
73-
cd METIS
74-
make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1
75-
make
76-
make install
70+
# - name: Install METIS Debug
71+
# if: ${{ matrix.config == 'Debug'}}
72+
# run: |
73+
# cd METIS
74+
# make config prefix=${{runner.workspace}}/installs gdb=1 debug=1
75+
# make
76+
# make install
7777

7878
- name: Check METIS and GKlib
7979
working-directory: ${{runner.workspace}}

.github/workflows/hipo-ubuntu-gh.yml

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,20 @@ jobs:
4545
ls
4646
4747
- name: Install GKlib Release
48-
if: ${{ matrix.config == 'Release' }}
48+
# if: ${{ matrix.config == 'Release' }}
4949
run: |
5050
cd GKlib
5151
make config shared=1 prefix=${{runner.workspace}}/installs
5252
make
5353
make install
5454
55-
- name: Install GKlib Debug
56-
if: ${{ matrix.config == 'Debug' }}
57-
run: |
58-
cd GKlib
59-
make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1
60-
make
61-
make install
55+
# - name: Install GKlib Debug
56+
# if: ${{ matrix.config == 'Debug' }}
57+
# run: |
58+
# cd GKlib
59+
# make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1
60+
# make
61+
# make install
6262

6363
# - name: Check installs
6464
# working-directory: ${{runner.workspace}}
@@ -76,20 +76,23 @@ jobs:
7676
ls
7777
7878
- name: Install METIS Release
79-
if: ${{ matrix.config == 'Release'}}
79+
# if: ${{ matrix.config == 'Release'}}
8080
run: |
8181
cd METIS
8282
make config shared=1 prefix=${{runner.workspace}}/installs
8383
make
8484
make install
8585
86-
- name: Install METIS Debug
87-
if: ${{ matrix.config == 'Debug'}}
88-
run: |
89-
cd METIS
90-
make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1
91-
make
92-
make install
86+
# - name: Install METIS Debug
87+
# if: ${{ matrix.config == 'Debug'}}
88+
# run: |
89+
# cd METIS
90+
# make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1
91+
# make
92+
# make install
93+
94+
# error: ‘graph’ may be used uninitialized [-Werror=maybe-uninitialized]
95+
# -DCMAKE_BUILD_TYPE=${{ matrix.config }} \
9396

9497
# no default blas available on runner
9598

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
os: [windows-latest]
1313
branch: [hipo-dev]
1414
config: [Release, Debug]
15-
all_tests: [ON, OFF]
15+
all_tests: [OFF]
1616

1717
steps:
1818
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)