Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

cd /cds/sw/ds/ana/conda1/

if ./manage is not available

    git clone git@github.com:slaclab/anarel-manage.git manage  # if manage directory is not available, OR

cd manage

update it if necessary

git pull --rebase

ls scratch/  # to see what releases were createdis the latest release, e.g. psana-conda-4.0.55/, then create next:

bin/ana-rel-admin --force --cmd psana-conda-src --name 4.0.56 --basedir `pwd` --tagsfile psana-conda-svn-pkgs[-test]

  `pwd`   # command assembles all the source code from the tags into a .tar.gz file

...

source /cds/sw/ds/ana/conda2/manage/bin/psconda.sh
conda deactivate
conda activate conda_build


sha256sum /cds/sw/ds/ana/conda1/manage/downloads/anarel/psana-conda-4.0.56.tar.gz

443440bf7a7fdbcdf89314b68c07f97f5a89dff38d6da98685e74f0671fac37d

Code Block
titleedit psana1-feedstock/recipe/meta.yaml
collapsetrue
{% set version = '4.0.56' %}
 ...
 sha256: 443440bf7a7fdbcdf89314b68c07f97f5a89dff38d6da98685e74f0671fac37d
 ...
extra:
  recipe-maintainers:
    - valmar
    - chrisvam
    - dubrovin

update it in github

Valerio: conda create -n local_conda_build python conda-build conda-validate anaconda-client # to prevent error

conda build -c lcls-i -c conda-forge recipe

...