mirror of
https://github.com/9001/copyparty.git
synced 2026-06-19 04:32:26 -06:00
115 lines
2.9 KiB
Bash
Executable file
115 lines
2.9 KiB
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
AVER=3.24
|
|
|
|
[ $(id -u) -eq 0 ] && {
|
|
echo dont root
|
|
exit 1
|
|
}
|
|
self=$(cd -- "$(dirname "$BASH_SOURCE")"; pwd -P)
|
|
cd "$self"
|
|
|
|
sarchs="386 amd64 arm/v7 arm64/v8 ppc64le s390x"
|
|
archs="amd64 amd64 386 arm64 arm s390x ppc64le"
|
|
|
|
err=
|
|
for x in awk jq podman python3 tar wget ; do
|
|
command -v $x >/dev/null && continue
|
|
err=1; echo ERROR: missing dependency: $x
|
|
done
|
|
[ $err ] && exit 1
|
|
|
|
for v in "$@"; do
|
|
[ "$v" = pull ] && pull=1
|
|
[ "$v" = img ] && img=1
|
|
done
|
|
|
|
[ $# -gt 0 ] || {
|
|
echo "need list of commands, for example: pull img"
|
|
exit 1
|
|
}
|
|
|
|
wt() {
|
|
printf '\033]0;%s\033\\' "$*"
|
|
[ -z "$TMUX" ] || tmux renamew "$*"
|
|
}
|
|
|
|
[ $pull ] && {
|
|
for a in $sarchs; do
|
|
podman pull --arch=$a alpine:$AVER
|
|
done
|
|
|
|
podman images --format "{{.ID}} {{.History}}" |
|
|
awk '/library\/alpine/{print$1}' |
|
|
while read id; do
|
|
tag=alpine-$(podman inspect $id | jq -r '.[]|.Architecture' | tr / -)
|
|
[ -e .tag-$tag ] && continue
|
|
touch .tag-$tag
|
|
echo tagging $tag
|
|
podman untag $id
|
|
podman tag $id $tag
|
|
done
|
|
rm .tag-*
|
|
}
|
|
|
|
[ $img ] && {
|
|
mkdir -p "$self/b"
|
|
|
|
# enable arm32 crossbuild from aarch64 (macbook or whatever)
|
|
[ $(uname -m) = aarch64 ] && [ ! -e /proc/sys/fs/binfmt_misc/qemu-arm ] &&
|
|
echo ":qemu-arm:M:0:\x7f\x45\x4c\x46\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x28\x00:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/bin/qemu-arm-static:F" |
|
|
sudo tee >/dev/null /proc/sys/fs/binfmt_misc/register
|
|
|
|
# kill abandoned builders
|
|
ps aux | awk '/bin\/qemu-[^-]+-static/{print$2}' | xargs -r kill -9
|
|
|
|
n=0; set -xo pipefail
|
|
for a in $archs; do
|
|
n=$((n+1)); wt "$n/$a"
|
|
#[ $n -le 3 ] || continue
|
|
touch b/t.$n.$a.1.$(date +%s)
|
|
|
|
tar -c arbeidspakke.sh patch/ffmpeg |
|
|
time nice podman run \
|
|
--rm -i --pull=never -v "$self/b:/root:z" localhost/alpine-$a \
|
|
/bin/ash -c "cd /opt;tar -x;/bin/ash ./arbeidspakke.sh $n $a" 2>&1 |
|
|
awk '{getline a<"/proc/uptime";close("/proc/uptime");sub(/ .*/,"",a);printf"%.2f %s\n",a-p,$0;p=a}' |
|
|
tee b/log.$n.$a
|
|
|
|
touch b/t.$n.$a.2.$(date +%s)
|
|
done
|
|
wt -;wt ""
|
|
}
|
|
|
|
echo ok
|
|
|
|
# just-no265
|
|
# 4m18.77 x64
|
|
# 4m22.81 386
|
|
# 45m36.44 arm64
|
|
# 34m31.22 ppc64le
|
|
# 50m01.04 s390x
|
|
|
|
# golflympics
|
|
# 3:48 x86_64-hub
|
|
# 2:46 x86_64
|
|
# 2:24 x86
|
|
# 28:50 aarch64
|
|
# 21:34 armv7
|
|
# 31:13 s390x
|
|
# 22:50 ppc64le
|
|
# 1:53:25 summa summarum
|
|
|
|
# for a in version muxers demuxers devices decoders encoders filters pix_fmts layouts sample_fmts ; do ffmpeg -hide_banner -$a; done | nc 192.168.123.1 4321
|
|
|
|
# v=3.24-stable
|
|
# echo -n https://dl-cdn.alpinelinux.org/v${v%-*}/releases/x86_64/ >aver
|
|
# curl -s $(cat aver)latest-releases.yaml | awk '/alpine-minirootfs-3.*gz$/{print$2;exit}' | grep ... >> aver
|
|
# podman import $(cat aver) a324
|
|
# f(){ p=/sys/fs;for w in cgroup user.slice user-1000.slice user@1000.service user.slice ;do p="$p/$w";echo $1>"$p/cgroup.subtree_control";done;}
|
|
# f +cpuset
|
|
# time nice podman run --cpuset-cpus=1 \
|
|
# grep -E '^[^0].*' -B2 -A1 log.1.amd64 # offbyone, whatever, just eyeball it
|
|
# f -cpuset
|