File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ if [ "$USE_CONDA" = "true" ]; then
19
19
20
20
# Install dependencies per operating system
21
21
if [ " $OS " = " win" ]; then
22
+ # This is necessary for our tests related to conda envs to pass since
23
+ # the release of Mamba 1.1.0
24
+ mamba init
22
25
mamba env update --file requirements/windows.yml
23
26
elif [ " $OS " = " macos" ]; then
24
27
mamba env update --file requirements/macos.yml
Original file line number Diff line number Diff line change @@ -110,6 +110,14 @@ jobs:
110
110
run : |
111
111
conda info
112
112
conda list
113
+ # Notes:
114
+ # 1. This only works for conda, probably because it has the necessary
115
+ # MSYS2 packages to create the connection.
116
+ # 2. Check https://github.com/marketplace/actions/debugging-with-tmate for
117
+ # usage.
118
+ # - name: Setup remote ssh connection
119
+ # if: env.USE_CONDA == 'true'
120
+ # uses: mxschmitt/action-tmate@v3
113
121
- name : Run manifest checks
114
122
if : env.RUN_BUILD == 'true'
115
123
shell : bash -l {0}
You can’t perform that action at this time.
0 commit comments