File tree 3 files changed +29
-2
lines changed
3 files changed +29
-2
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,20 @@ jobs:
25
25
shell : bash -l {0}
26
26
id : week
27
27
run : echo "week=$(date +%Y-%U)" >> "${GITHUB_OUTPUT}"
28
+
28
29
- uses : mamba-org/setup-micromamba@v1
30
+ if : contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')
29
31
with :
30
32
environment-file : ci_env.yml
31
33
cache-environment-key : environment-${{ steps.week.outputs.week }}-${{ matrix.os }}
34
+
35
+ - uses : mamba-org/setup-micromamba@v1
36
+ if : contains(matrix.os, 'windows')
37
+ with :
38
+ environment-file : ci_env_win.yml
39
+ cache-environment-key : environment-${{ steps.week.outputs.week }}-${{ matrix.os }}
32
40
41
+
33
42
- name : Print packages and environment
34
43
shell : bash -l {0}
35
44
run : |
46
55
shell : bash -l {0}
47
56
if : contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')
48
57
run : |
49
- # Add additional dependencies not available on Windows
50
- micromamba install jax pytorch
51
58
pytest
52
59
53
60
- name : Test with pytest [Windows]
Original file line number Diff line number Diff line change @@ -16,3 +16,5 @@ dependencies:
16
16
- pytest-repeat
17
17
- icub-models
18
18
- idyntree
19
+ - jax
20
+ - pytorch
Original file line number Diff line number Diff line change
1
+ name : adamdev
2
+ channels :
3
+ - conda-forge
4
+ dependencies :
5
+ - python >=3.7
6
+ - numpy
7
+ - scipy
8
+ - casadi
9
+ - prettytable
10
+ - urdfdom-py
11
+ - pip
12
+ - wheel
13
+ - setuptools
14
+ - setuptools_scm
15
+ - pytest
16
+ - pytest-repeat
17
+ - icub-models
18
+ - idyntree
You can’t perform that action at this time.
0 commit comments