Skip to content

Commit

Permalink
Update changelog for create-env:3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mbargull committed Oct 17, 2023
1 parent 5fd2839 commit c7e7633
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
13 changes: 13 additions & 0 deletions images/create-env/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# Changelog


## bioconda/create-env 3.0 (2023-10-17)

### Changed

- Add linux-aarch64 image; bioconda/create-env is now a multiplatform manifest.

- Change to a simple "major.minor" version scheme and offer mutable "major" tag.

- Drop defaults channel from included config.

- Use Miniforge installer to build this image.


## bioconda/create-env 2.2.1 (2022-10-14)

### Changed
Expand Down
5 changes: 5 additions & 0 deletions images/create-env/install-conda
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ miniconda_boostrap_prefix="$( pwd )/miniconda"
tmp_dir="${miniconda_boostrap_prefix}/tmp-strip"
mkdir "${tmp_dir}"
mv "${conda_install_prefix}/bin/"*strip "${tmp_dir}/"
conda run --prefix="${conda_install_prefix}" strip -- "${tmp_dir}/"*strip
mamba remove --yes --all \
--prefix="${conda_install_prefix}"

Expand Down Expand Up @@ -60,6 +61,10 @@ eval "${activate_script}"
set -u
unset activate_script

# Run strip on find/xargs/grep beforehand as they are run in the strip pipeline.
for prog in find xargs grep ; do
strip -- "$( command -v "${prog}" )"
done

# Use --conda=: to turn the `conda create` into a no-op, but do continue to
# run strip, remove files and output the activate/execute scripts.
Expand Down

0 comments on commit c7e7633

Please sign in to comment.