Commit eb70465 1 parent 3d0ac32 commit eb70465 Copy full SHA for eb70465
File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -22,18 +22,23 @@ runs:
22
22
- name : Setup miniconda
23
23
uses : conda-incubator/setup-miniconda@v3
24
24
with :
25
+ channels : conda-forge,nodefaults
26
+ conda-remove-defaults : " true"
25
27
python-version : ' 3.11'
26
28
miniconda-version : latest
27
29
- name : Configure build environment
28
30
shell : bash
29
31
run : |
30
32
# initialize Conda
33
+ conda config --show channels
31
34
conda config --set solver libmamba
32
35
conda update -y -q conda
33
36
echo "$CONDA/bin" >> $GITHUB_PATH
37
+ conda config --show channels
34
38
35
39
conda install -y -q python=3.11 cmake=3.26 make=4.2 swig=4.0 "numpy<2" scipy=1.14 pytest=7.4 gflags=2.2
36
40
41
+ conda config --show channels
37
42
# install base packages for ARM64
38
43
if [ "${{ runner.arch }}" = "ARM64" ]; then
39
44
conda install -y -q -c conda-forge openblas=0.3 gxx_linux-aarch64=14.2 sysroot_linux-aarch64=2.17
65
70
else
66
71
conda install -y -q "pytorch<2.5" -c pytorch
67
72
fi
73
+ conda config --show channels
68
74
- name : ROCm - Install dependencies
69
75
if : inputs.rocm == 'ON'
70
76
shell : bash
Original file line number Diff line number Diff line change 31
31
with :
32
32
python-version : ' 3.11'
33
33
miniconda-version : latest
34
+ channels : conda-forge,nodefaults
35
+ conda-remove-defaults : " true"
34
36
- name : Install conda build tools
35
37
shell : ${{ steps.choose_shell.outputs.shell }}
36
38
run : |
You can’t perform that action at this time.
0 commit comments