Skip to content

Commit

Permalink
hooks: Temporarily disable demo generation in pre-push
Browse files Browse the repository at this point in the history
The out-of-tree Podman patch needs to be rebased every second week or
so, and I'm currently trying to get that upstream:
  containers/podman#16141

Disable demo generation for the moment, so that I avoid wasting time
with those rebases. We'll re-enable it later.

Signed-off-by: Stefano Brivio <[email protected]>
  • Loading branch information
sbrivio-rh committed Oct 26, 2022
1 parent d472476 commit fb820eb
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions hooks/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ BASE="/var/www/passt"
BUILDS="${BASE}/builds"
LATEST="${BUILDS}/latest"
TEMP="${BUILDS}/temp"
AWAY="${BUILDS}/away"

WEB="${TEMP}/web"
TEST="${TEMP}/test"

ARCH="$(uname -m)"
BIN="${TEMP}/${ARCH}"
OLD_BIN="${LATEST}/${ARCH}"

ssh "${USER_HOST}" "mkdir -p ${WEB} ${TEST} ${BIN}"

Expand All @@ -41,12 +41,15 @@ for f in test_logs/web/*.cast test_logs/web/*.js; do
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 ..

Expand All @@ -68,6 +71,10 @@ for pic in passt_overview pasta_overview; do
done
scp doc/*.html "${USER_HOST}:${WEB}/"

ssh "${USER_HOST}" "mv ${LATEST} ${AWAY}"
ssh "${USER_HOST}" "mv ${TEMP} ${LATEST}"
ssh "${USER_HOST}" "rm -rf ${AWAY}"
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}"

0 comments on commit fb820eb

Please sign in to comment.