Skip to content

Commit 7d974fb

Browse files
committed
use proper channels
1 parent 28779b2 commit 7d974fb

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.scripts/build_unix.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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}
@@ -50,7 +50,7 @@ done
5050

5151
# Check if it build something, this is a hotfix for the skips inside additional_recipes
5252
if 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
5454
else
5555
echo "Warning: No .conda files found in ${CONDA_BLD_PATH}/${target}"
5656
echo "This might be due to all the packages being skipped"

.scripts/build_win.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 (

0 commit comments

Comments
 (0)