File tree 3 files changed +9
-6
lines changed
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,14 @@ jobs:
31
31
auto-update-conda : true
32
32
python-version : ${{ matrix.python-version }}
33
33
environment-file : continuous_integration/environment.yml
34
- channels : conda-forge
34
+ channels : conda-forge,nodefaults
35
+ channel-priority : strict
35
36
activate-environment : suitesparse-graphblas
37
+ auto-activate-base : false
36
38
- name : GraphBLAS (from conda-forge)
37
39
if : (contains(matrix.source, 'conda-forge'))
38
40
run : |
39
- conda install -c conda-forge graphblas=${{ matrix.graphblas-version }} pytest-randomly
41
+ conda install graphblas=${{ matrix.graphblas-version }}
40
42
- name : GraphBLAS (from source)
41
43
if : (contains(matrix.source, 'source'))
42
44
run : |
Original file line number Diff line number Diff line change 1
1
name : suitesparse-graphblas
2
2
channels :
3
3
- conda-forge
4
- - defaults
4
+ - nodefaults # Only install packages from conda-forge for faster solving
5
5
dependencies :
6
6
# - graphblas=6.0.2
7
7
- cffi
8
8
- cython
9
9
- numpy
10
10
- pytest
11
+ - pytest-randomly
11
12
- coverage
12
- - black
13
- - flake8
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ set -x # echo on
4
+
3
5
# parse SuiteSparse version from first argument, a git tag that ends in the version (no leading v)
4
6
if [[ $1 =~ refs/tags/([0-9]* \. [0-9]* \. [0-9]* )\. .* $ ]]; then
5
7
VERSION=${BASH_REMATCH[1]}
6
8
else
7
- echo " Specify a SuiteSparse version, such as: $0 refs/tags/7.4.3.0"
9
+ echo " Specify a SuiteSparse version, such as: $0 refs/tags/7.4.3.0 (got: $1 ) "
8
10
exit -1
9
11
fi
10
12
echo VERSION: $VERSION
You can’t perform that action at this time.
0 commit comments