Commit e131a54 1 parent 3d0ac32 commit e131a54 Copy full SHA for e131a54
File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -24,16 +24,23 @@ runs:
24
24
with :
25
25
python-version : ' 3.11'
26
26
miniconda-version : latest
27
+ channels : conda-forge,nodefaults
28
+ conda-remove-defaults : " true"
27
29
- name : Configure build environment
28
30
shell : bash
29
31
run : |
30
32
# initialize Conda
33
+ conda config --show channels
34
+ conda config --remove channels defaults
35
+ conda config --show channels
31
36
conda config --set solver libmamba
32
37
conda update -y -q conda
33
38
echo "$CONDA/bin" >> $GITHUB_PATH
39
+ conda config --show channels
34
40
35
41
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
42
43
+ conda config --show channels
37
44
# install base packages for ARM64
38
45
if [ "${{ runner.arch }}" = "ARM64" ]; then
39
46
conda install -y -q -c conda-forge openblas=0.3 gxx_linux-aarch64=14.2 sysroot_linux-aarch64=2.17
65
72
else
66
73
conda install -y -q "pytorch<2.5" -c pytorch
67
74
fi
75
+ conda config --show channels
68
76
- name : ROCm - Install dependencies
69
77
if : inputs.rocm == 'ON'
70
78
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