Skip to content

Commit c17ea19

Browse files
committedSep 15, 2020
Exclude suitesparse CAMD from ci builds other than ubuntu
At some point I'll need to figure out a proper way to use suitesparse on platforms other than linux.
1 parent 94ab762 commit c17ea19

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -105,23 +105,23 @@ jobs:
105105
override: true
106106

107107
- name: Build (exclude suitesparse)
108-
run: cargo build --verbose --workspace --exclude suitesparse_ldl_sys --exclude sprs_suitesparse_ldl
108+
run: cargo build --verbose --workspace --exclude suitesparse_ldl_sys --exclude sprs_suitesparse_ldl --exclude sprs_suitesparse_camd --exclude suitesparse_camd_sys
109109
if: matrix.os != 'ubuntu-18.04'
110110

111111
- name: Build (all)
112112
run: cargo build --verbose --workspace
113113
if: matrix.os == 'ubuntu-18.04'
114114

115115
- name: Test (exclude suitesparse)
116-
run: cargo test --verbose --workspace --exclude suitesparse_ldl_sys --exclude sprs_suitesparse_ldl
116+
run: cargo test --verbose --workspace --exclude suitesparse_ldl_sys --exclude sprs_suitesparse_ldl --exclude sprs_suitesparse_camd --exclude suitesparse_camd_sys
117117
if: matrix.os != 'ubuntu-18.04'
118118

119119
- name: Test (all)
120120
run: cargo test --verbose --workspace
121121
if: matrix.os == 'ubuntu-18.04'
122122

123123
- name: Test (suitesparse integration)
124-
run: cargo test -p sprs-ldl --features sprs_suitesparse_ldl -Zpackage-features
124+
run: cargo test -p sprs-ldl --features "sprs_suitesparse_ldl sprs_suitesparse_camd" -Zpackage-features
125125
if: matrix.os == 'ubuntu-18.04' && matrix.build == 'nightly'
126126

127127
benches:

0 commit comments

Comments
 (0)