mirror of
https://passt.top/passt
synced 2024-11-05 20:31:11 +00:00
ca2749e1bd
In practical terms, passt doesn't benefit from the additional protection offered by the AGPL over the GPL, because it's not suitable to be executed over a computer network. Further, restricting the distribution under the version 3 of the GPL wouldn't provide any practical advantage either, as long as the passt codebase is concerned, and might cause unnecessary compatibility dilemmas. Change licensing terms to the GNU General Public License Version 2, or any later version, with written permission from all current and past contributors, namely: myself, David Gibson, Laine Stump, Andrea Bolognani, Paul Holzinger, Richard W.M. Jones, Chris Kuhn, Florian Weimer, Giuseppe Scrivano, Stefan Hajnoczi, and Vasiliy Ulyanov. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
81 lines
2.0 KiB
Bash
Executable File
81 lines
2.0 KiB
Bash
Executable File
#!/bin/sh -e
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# PASST - Plug A Simple Socket Transport
|
|
# for qemu/UNIX domain socket mode
|
|
#
|
|
# PASTA - Pack A Subtle Tap Abstraction
|
|
# for network namespace/tap device mode
|
|
#
|
|
# hooks/pre-push - Run CI. On success, run demos, build, and copy all contents
|
|
#
|
|
# Copyright (c) 2021 Red Hat GmbH
|
|
# Author: Stefano Brivio <sbrivio@redhat.com>
|
|
#
|
|
# cp hooks/pre-push .git/hooks/pre-push
|
|
|
|
USER_HOST="passt.top"
|
|
BASE="/var/www/passt"
|
|
|
|
BUILDS="${BASE}/builds"
|
|
LATEST="${BUILDS}/latest"
|
|
TEMP="${BUILDS}/temp"
|
|
|
|
WEB="${TEMP}/web"
|
|
TEST="${TEMP}/test"
|
|
|
|
ARCH="$(uname -m)"
|
|
BIN="${TEMP}/${ARCH}"
|
|
OLD_BIN="${LATEST}/${ARCH}"
|
|
|
|
ssh "${USER_HOST}" "mkdir -p ${WEB} ${TEST} ${BIN}"
|
|
|
|
cd test
|
|
|
|
./ci
|
|
scp test_logs/*.log "${USER_HOST}:${TEST}/"
|
|
for f in test_logs/web/*.cast test_logs/web/*.js; do
|
|
gzip -fk9 "${f}"
|
|
scp "${f}" "${USER_HOST}:${WEB}/"
|
|
scp "${f}.gz" "${USER_HOST}:${WEB}/"
|
|
done
|
|
|
|
# TODO: Re-enable demos once we have pasta support in upstream Podman
|
|
skip() {
|
|
./run_demo
|
|
for f in test_logs/web/*.cast test_logs/web/*.js; do
|
|
gzip -fk9 "${f}"
|
|
scp "${f}" "${USER_HOST}:${WEB}/"
|
|
scp "${f}.gz" "${USER_HOST}:${WEB}/"
|
|
done
|
|
}
|
|
|
|
cd ..
|
|
|
|
make pkgs
|
|
scp passt passt.avx2 passt.1 qrap qrap.1 "${USER_HOST}:${BIN}"
|
|
scp pasta pasta.avx2 pasta.1 "${USER_HOST}:${BIN}"
|
|
|
|
ssh "${USER_HOST}" "rm -f ${BIN}/*.deb"
|
|
ssh "${USER_HOST}" "rm -f ${BIN}/*.rpm"
|
|
scp *.deb *.rpm "${USER_HOST}:${BIN}/"
|
|
|
|
man2html -M "/" passt.1 > passt.1.html
|
|
scp passt.1.html "${USER_HOST}:${WEB}/"
|
|
|
|
for pic in passt_overview pasta_overview; do
|
|
cwebp -preset drawing -q 10 "doc/${pic}.png" -o "doc/${pic}.webp"
|
|
scp "doc/${pic}.png" "doc/${pic}.png" "${USER_HOST}:${WEB}/"
|
|
scp "doc/${pic}.webp" "doc/${pic}.webp" "${USER_HOST}:${WEB}/"
|
|
done
|
|
scp doc/*.html "${USER_HOST}:${WEB}/"
|
|
|
|
ssh "${USER_HOST}" "cp ${WEB}/* ${LATEST}/web/"
|
|
ssh "${USER_HOST}" "cp ${TEST}/* ${LATEST}/test/"
|
|
|
|
ssh "${USER_HOST}" "rm -f ${OLD_BIN}/*"
|
|
ssh "${USER_HOST}" "cp ${BIN}/* ${LATEST}/${ARCH}/"
|
|
|
|
ssh "${USER_HOST}" "rm -rf ${TEMP}"
|