Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
daler committed Feb 5, 2024
1 parent c4034c6 commit 1766609
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/generic_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ 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+=("--labels=glibc=\"$( run sh -c 'exec "$( find -xdev -name libc.so.6 -print -quit )"' | sed '1!d' )\"")
LABELS+=("--labels=glibc=\"$( run sh -c 'exec "$( find -xdev -name libc.so.6 -print -quit )"' | sed '1!d' )\"")
LABELS+=("--label=debian=\"$( run cat /etc/debian_version | sed '1!d' )\"")
LABELS+=("--label=bash=\"$( run bash --version | sed '1!d' )\"")
Expand All @@ -171,7 +171,10 @@ jobs:
# Add labels to a new container...
container="$( buildah from "${image_id}" )"
buildah config ${LABELS[@]} "${container}"
# FIXME: can't quite get the quoting right for args in array, so
# disabling for now to get other things working.
# buildah config ${LABELS[@]} "${container}"
# ...then store the container (now with labels) as a new image. This
# is what we'll use to upload.
Expand Down

0 comments on commit 1766609

Please sign in to comment.