Skip to content

Commit

Permalink
Output packages into different dir
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitakuklev committed Mar 7, 2024
1 parent 1498816 commit 096ef27
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .gitlab/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
- .conda:base
variables:
CONDA_RECIPE_DIR: "${CI_PROJECT_DIR}/conda"
CONDA_BUILD_OPTIONS: ""
CONDA_BUILD_OPTIONS: "--output-folder ${CONDA_BLD_PATH_FINAL} --no-anaconda-upload"
MAMBABUILD: "false"
NEED_WRITABLE_BASE: "true"
script:
Expand Down Expand Up @@ -151,12 +151,13 @@
- if ${MAMBABUILD}; then BUILDER="mambabuild"; else BUILDER="build"; fi
- echo "Building with ${BUILDER}"
- xargs -t conda ${BUILDER} recipe/ <<< ${CONDA_BUILD_OPTIONS}
- cp -R ${CONDA_BLD_PATH} ${CONDA_BLD_PATH_FINAL}
#- cp -R ${CONDA_BLD_PATH} ${CONDA_BLD_PATH_FINAL}
#- ln -s ${CONDA_BLD_PATH} ${CONDA_BLD_PATH_FINAL}
artifacts:
paths:
# packages
- conda-bld/**/*.conda
- conda-bld/**/*.tar.bz2
# the feedstock
- feedstock/
#- feedstock/

0 comments on commit 096ef27

Please sign in to comment.