File tree 1 file changed +5
-6
lines changed 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -70,17 +70,16 @@ jobs:
70
70
- name : Set up Python
71
71
uses : conda-incubator/setup-miniconda@v3.0.4
72
72
with :
73
- miniforge-variant : Mambaforge
74
- use-mamba : true
73
+ miniforge-variant : Miniforge3
75
74
python-version : " 3.8"
76
75
channel-priority : strict
77
76
- name : Install dependencies
78
77
run : |
79
- mamba install -c conda-forge boa conda-verify
78
+ conda install -c conda-forge conda-build conda-verify
80
79
81
80
which python
82
81
pip list
83
- mamba list
82
+ conda list
84
83
# Clean the conda cache
85
84
- name : Clean Conda Cache
86
85
run : conda clean --all --yes
89
88
# suffix for nightly package versions
90
89
export VERSION_SUFFIX=a`date +%y%m%d`
91
90
92
- conda mambabuild conda/recipes \
91
+ conda build conda/recipes \
93
92
--python ${{ matrix.python }} \
94
93
--variants "{target_platform: [${{ matrix.arch }}]}" \
95
94
--error-overlinking \
99
98
- name : Test conda packages
100
99
if : matrix.arch == 'linux-64' # can only test native platform packages
101
100
run : |
102
- conda mambabuild --test packages/${{ matrix.arch }}/*.tar.bz2
101
+ conda build --test packages/${{ matrix.arch }}/*.tar.bz2
103
102
- name : Upload conda packages as artifacts
104
103
uses : actions/upload-artifact@v4
105
104
with :
You can’t perform that action at this time.
0 commit comments