File tree 1 file changed +17
-13
lines changed 1 file changed +17
-13
lines changed Original file line number Diff line number Diff line change @@ -35,23 +35,27 @@ jobs:
35
35
key :
36
36
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('ci/environment.yml') }}
37
37
38
- - uses : conda-incubator/setup-miniconda@v2
38
+ - uses : mamba-org/setup-micromamba@v1
39
+ if : contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
39
40
with :
40
- miniconda-version : " latest"
41
- auto-update-conda : true
42
41
environment-file : ci/environment.yml
43
- python-version : ${{ matrix.python-version }}
44
- use-only-tar-bz2 : true
42
+ create-args : >-
43
+ python=${{ matrix.python-version }}
44
+ bison=3.4
45
+ nodejs=18
46
+ symengine=0.12.0
47
+ sympy=1.11.1
45
48
46
- - name : Install Windows Conda Packages
49
+ - uses : mamba-org/setup-micromamba@v1
47
50
if : contains(matrix.os, 'windows')
48
- shell : bash -e -l {0}
49
- run : conda install m2-bison=3.0.4 cmake=3.21.1
50
-
51
- - name : Install Linux / macOS Conda Packages
52
- if : contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
53
- shell : bash -e -l {0}
54
- run : conda install bison=3.4 nodejs=18
51
+ with :
52
+ environment-file : ci/environment.yml
53
+ create-args : >-
54
+ python=${{ matrix.python-version }}
55
+ m2-bison=3.0.4
56
+ cmake=3.21.1
57
+ symengine=0.12.0
58
+ sympy=1.11.1
55
59
56
60
- name : Conda info
57
61
shell : bash -e -l {0}
You can’t perform that action at this time.
0 commit comments