1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2025-01-27 20:30:04 +00:00
seirdy.one/scripts/setup-ci.sh

15 lines
469 B
Bash
Raw Normal View History

#!/bin/sh
# For CI: configures SSH and installs binaries that I use to build my site.
# The binaries are statically-linked for Linux on x86_64
2023-11-25 13:40:52 -08:00
# no pipefail here since there are no pipes.
2024-04-03 22:36:32 -04:00
set -eux
# mirrored at https://seirdy.one/pb/binaries.tar.gz
rsync -WPv \
-e "ssh -o KexAlgorithms=sntrup761x25519-sha512@openssh.com -o VerifyHostKeyDNS=yes" \
deploy@seirdy.one:/var/www/pb/binaries.tar.gz .
2023-11-24 21:04:41 -08:00
mkdir -p ~/bin
tar xzf binaries.tar.gz -oC ~/bin
rm binaries.tar.gz