Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
daler committed Feb 2, 2024
1 parent 37b6e47 commit f72e4a7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/generic_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
BUILD_ARGS+=("--build-arg=debian_version=$debian_version")
fi
if [ ! -z "${bioconda_utils}" ]; then
if [ "${bioconda_utils}" == "true" ]; then
# Due to different nomenclature used by conda-forge and buildah, we
# need to map archs to base images.
archs_and_images=(
Expand Down Expand Up @@ -150,7 +150,13 @@ jobs:
LABELS=()
LABELS+=("--label=deb-list=\"$( run cat /.deb.lst | tr '\n' '|' | sed 's/|$//' )\"")
LABELS+=("--label=pkg-list=\"$( run cat /.pkg.lst | tr '\n' '|' | sed 's/|$//' )\"")
LABELS+=("--label=glibc=\"$( run sh -c 'exec "$( find -xdev -name libc.so.6 -print -quit )"' | sed '1!d' )\"")
LABELS+=("--label=glibc=\"$(
run sh -c 'exec "$( find -xdev -name libc.so.6 -print -quit )"'
| sed '1!d'
| sed "s/ /_/g"
| sed "s/\"//g"
| sed "s/\'//g")\""
)
LABELS+=("--label=debian=\"$( run cat /etc/debian_version | sed '1!d' )\"")
LABELS+=("--label=bash=\"$( run bash --version | sed '1!d' )\"")
Expand Down

0 comments on commit f72e4a7

Please sign in to comment.