Skip to content

Commit

Permalink
buildbot: run targets builds on 10 GiB ramdisks
Browse files Browse the repository at this point in the history
  • Loading branch information
pktpls committed Nov 7, 2024
1 parent 64fc505 commit 7670a2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/buildbot/files/targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def targetsTargetFactory(f, wwwPrefix, wwwURL, alpineVersion):
# Also larger targets seemed to need more than 6 GiB.
#
"""\
podman run -i --rm --log-driver=none docker.io/library/alpine:%(kw:alpineVersion)s sh -c '\
podman run -i --rm --log-driver=none --tmpfs /root:rw,size=10485760k,mode=1777 docker.io/library/alpine:%(kw:alpineVersion)s sh -c '\
( \
apk add git bash wget zstd xz gzip unzip grep diffutils findutils coreutils build-base gcc abuild binutils ncurses-dev gawk bzip2 gettext perl python3 rsync sqlite flex libxslt \
&& git clone %(prop:repository)s /root/falter-builter \
Expand Down Expand Up @@ -415,7 +415,7 @@ def targetsTargetFactory(f, wwwPrefix, wwwURL, alpineVersion):
"-c",
util.Interpolate(
"""\
podman run -i --rm --log-driver=none docker.io/library/alpine:%(kw:alpineVersion)s sh -c '\
podman run -i --rm --log-driver=none --tmpfs /root:rw,size=10485760k,mode=1777 docker.io/library/alpine:%(kw:alpineVersion)s sh -c '\
( \
apk add git bash wget zstd xz gzip unzip grep diffutils findutils coreutils build-base gcc abuild binutils ncurses-dev gawk bzip2 gettext perl python3 rsync sqlite flex libxslt \
&& git clone %(prop:repository)s /root/falter-builter \
Expand Down

0 comments on commit 7670a2b

Please sign in to comment.