diff options
author | Alexey Neyman <stilor@att.net> | 2018-04-27 22:57:56 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-04-29 12:06:54 -0700 |
commit | f6d8c2ffbd15197baeeabbb5dae836c6df0d234f (patch) | |
tree | b797ca1e5831f171cebbd7049785ece921d4384b /testing | |
parent | 51f0e7c649a84c66ce0111703498dc4466e35562 (diff) | |
download | crosstool-ng-f6d8c2ffbd15197baeeabbb5dae836c6df0d234f.tar.gz crosstool-ng-f6d8c2ffbd15197baeeabbb5dae836c6df0d234f.tar.bz2 crosstool-ng-f6d8c2ffbd15197baeeabbb5dae836c6df0d234f.zip |
Add docker testing for Gentoo
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/docker/common-scripts/su-as-user | 1 | ||||
-rwxr-xr-x | testing/docker/dmgr.sh | 5 | ||||
-rw-r--r-- | testing/docker/gentoo-amd64/Dockerfile | 4 |
3 files changed, 9 insertions, 1 deletions
diff --git a/testing/docker/common-scripts/su-as-user b/testing/docker/common-scripts/su-as-user index 99246f23..436eb54c 100755 --- a/testing/docker/common-scripts/su-as-user +++ b/testing/docker/common-scripts/su-as-user @@ -8,6 +8,7 @@ shift 4 groupadd -g ${gid} ${grp} useradd -d /home/${usr} -m -g ${gid} -u ${uid} ${usr} +rm -f /home/${usr}/src ln -sf /src /home/${usr}/src if [ -z "$*" ]; then exec su -l ${usr} diff --git a/testing/docker/dmgr.sh b/testing/docker/dmgr.sh index 5dbb8b22..74539b42 100755 --- a/testing/docker/dmgr.sh +++ b/testing/docker/dmgr.sh @@ -83,7 +83,10 @@ action_clean() local cntr=$1 msg "Cleaning up after ${cntr}" - rm -rf build-${cntr} + if [ -d build-${cntr} ]; then + chmod -R +w build-${cntr} + rm -rf build-${cntr} + fi } action=$1 diff --git a/testing/docker/gentoo-amd64/Dockerfile b/testing/docker/gentoo-amd64/Dockerfile new file mode 100644 index 00000000..65005640 --- /dev/null +++ b/testing/docker/gentoo-amd64/Dockerfile @@ -0,0 +1,4 @@ +FROM gentoo/stage3-amd64-hardened +RUN wget -O /sbin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64 +RUN chmod +x /sbin/dumb-init +ENTRYPOINT [ "/sbin/dumb-init", "--" ] |