Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-15-SP7:Update
obs-service-docker_label_helper.35842
test.sh
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File test.sh of Package obs-service-docker_label_helper.35842
#!/bin/sh set -eu tmpdir=$(mktemp -d) trap 'rm -rf ${tmpdir}' EXIT script="$(realpath "$(dirname $0)")/docker_label_helper" cd $tmpdir # Test old syntax cat >Dockerfile <<EOF # labelprefix=org.opensuse.nano PREFIXEDLABEL org.opencontainers.image.title="Example container." PREFIXEDLABEL org.opencontainers.image.description="This contains nano" PREFIXEDLABEL org.opencontainers.image.source="https://build.opensuse.org/package/show/openSUSE:Factory/opensuse-tumbleweed-image?rev=1afbea7e9b8ecf976071564312c2db66" PREFIXEDLABEL test.whitespace="Two spaces. One tab." EOF export BUILD_DIST= sh "${script}" diff -u Dockerfile - <<EOF LABEL org.opensuse.nano.title="Example container." LABEL org.opencontainers.image.title="Example container." LABEL org.opensuse.nano.description="This contains nano" LABEL org.opencontainers.image.description="This contains nano" LABEL org.opensuse.nano.source="https://build.opensuse.org/package/show/openSUSE:Factory/opensuse-tumbleweed-image?rev=1afbea7e9b8ecf976071564312c2db66" LABEL org.opencontainers.image.source="https://build.opensuse.org/package/show/openSUSE:Factory/opensuse-tumbleweed-image?rev=1afbea7e9b8ecf976071564312c2db66" LABEL org.opensuse.nano.whitespace="Two spaces. One tab." LABEL test.whitespace="Two spaces. One tab." EOF rm -f Dockerfile # Test new syntax cat >Dockerfile <<EOF # labelprefix=org.opensuse.nano LABEL org.opencontainers.image.title="Example container." LABEL org.opencontainers.image.description="This contains nano" LABEL org.opencontainers.image.source="https://build.opensuse.org/package/show/openSUSE:Factory/opensuse-tumbleweed-image?rev=1afbea7e9b8ecf976071564312c2db66" LABEL test.whitespace="Two spaces. One tab." # endlabelprefix LABEL not.expanded.label="example" EOF export BUILD_DIST= sh "${script}" diff -u Dockerfile - <<EOF LABEL org.opensuse.nano.title="Example container." LABEL org.opencontainers.image.title="Example container." LABEL org.opensuse.nano.description="This contains nano" LABEL org.opencontainers.image.description="This contains nano" LABEL org.opensuse.nano.source="https://build.opensuse.org/package/show/openSUSE:Factory/opensuse-tumbleweed-image?rev=1afbea7e9b8ecf976071564312c2db66" LABEL org.opencontainers.image.source="https://build.opensuse.org/package/show/openSUSE:Factory/opensuse-tumbleweed-image?rev=1afbea7e9b8ecf976071564312c2db66" LABEL org.opensuse.nano.whitespace="Two spaces. One tab." LABEL test.whitespace="Two spaces. One tab." LABEL not.expanded.label="example" EOF # Test _multibuild cat >Dockerfile.FLAVOR <<EOF # labelprefix=org.opensuse.nano LABEL org.opencontainers.image.title="Example container." # endlabelprefix EOF export BUILD_DIST="$tmpdir/test_multibuild/.build/build.dist" mkdir -p "$tmpdir/test_multibuild/.build" cat >"$tmpdir/test_multibuild/.build/build.data" <<EOF RECIPEFILE=_service:obs_scm:Dockerfile.FLAVOR EOF sh "${script}" diff -u Dockerfile.FLAVOR - <<EOF LABEL org.opensuse.nano.title="Example container." LABEL org.opencontainers.image.title="Example container." EOF # Test _multibuild when not a Dockerfile.* cat >NotADockerfile <<EOF # labelprefix=org.opensuse.nano LABEL org.opencontainers.image.title="Example container." # endlabelprefix EOF export BUILD_DIST="$tmpdir/test_multibuild/.build/build.dist" mkdir -p "$tmpdir/test_multibuild/.build" cat >"$tmpdir/test_multibuild/.build/build.data" <<EOF RECIPEFILE=_service:obs_scm:NotADockerfile EOF sh "${script}" diff -u NotADockerfile - <<EOF # labelprefix=org.opensuse.nano LABEL org.opencontainers.image.title="Example container." # endlabelprefix EOF
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor