File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ for recipe in ${CURRENT_RECIPES[@]}; do
4040 pixi run -v rattler-build build \
4141 --recipe ${FEEDSTOCK_ROOT} /recipes/${recipe} \
4242 -m ${FEEDSTOCK_ROOT} /conda_build_config.yaml \
43- -c robostack-kilted -c conda-forge \
43+ -c https://prefix.dev/ robostack-rolling -c https://prefix.dev/ conda-forge \
4444 ${extra_channel} \
4545 --output-dir $CONDA_BLD_PATH \
4646 ${cross_compile}
5050
5151# Check if it build something, this is a hotfix for the skips inside additional_recipes
5252if compgen -G " ${CONDA_BLD_PATH} /${target} */*.conda" > /dev/null; then
53- pixi run upload " ${CONDA_BLD_PATH} /${target} " * /* .conda
53+ pixi run upload " ${CONDA_BLD_PATH} /${target} " * /* .conda --skip-existing
5454else
5555 echo " Warning: No .conda files found in ${CONDA_BLD_PATH} /${target} "
5656 echo " This might be due to all the packages being skipped"
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ for %%X in (%CURRENT_RECIPES%) do (
1818 cd %FEEDSTOCK_ROOT% \recipes\%%X \
1919 pixi run -v rattler-build build --recipe %FEEDSTOCK_ROOT% \recipes\%%X \ ^
2020 -m %FEEDSTOCK_ROOT% \conda_build_config.yaml ^
21- -c robostack-kilted -c conda-forge ^
21+ -c https://prefix.dev/ robostack-rolling -c https://prefix.dev/ conda-forge ^
2222 --output-dir %CONDA_BLD_PATH%
2323
2424 if errorlevel 1 exit 1
@@ -30,7 +30,7 @@ if exist "%CONDA_BLD_PATH%\win-64\*.conda" (
3030 echo Found .conda files, starting upload...
3131 for %%F in (" %CONDA_BLD_PATH% \win-64\*.conda" ) do (
3232 echo Uploading %%F
33- pixi run upload " %%F "
33+ pixi run upload " %%F " --skip-existing
3434 if errorlevel 1 exit 1
3535 )
3636) else (
You can’t perform that action at this time.
0 commit comments