Compare commits

..

2 commits

Author SHA1 Message Date
e90055e3bd 3.11 2023-05-30 16:12:16 -06:00
3a0f174e37 Use the tirefireind key 2023-05-30 16:12:10 -06:00
2 changed files with 6 additions and 6 deletions

View file

@ -2,7 +2,8 @@
VERSION="$1" VERSION="$1"
TAG="release-v${VERSION}" TAG="release-v${VERSION}"
KEY="${HOME}/.config/ssh/id_arrdem@tirefireind"
TON="${HOME}/ton"
if git tag | grep "$TAG"; then if git tag | grep "$TAG"; then
git checkout "$TAG" git checkout "$TAG"
@ -18,9 +19,8 @@ fi
bazel build cram bazel build cram
TON="$HOME/ton" mkdir -p "${TON}/key"
mkdir -p "$TON/key" cp "${KEY}.pub" "$TON/key"
cp ~/.ssh/id_arrdem@arrdem.pub "$TON/key"
chmod 644 "$TON/key"/* chmod 644 "$TON/key"/*
D="$TON/pkg/arrdem/cram/v${VERSION}" D="$TON/pkg/arrdem/cram/v${VERSION}"
@ -29,6 +29,6 @@ SIG="${D}/cram.sig"
mkdir -p "$D" mkdir -p "$D"
cp -f ./bazel-bin/cram "${BUILD}" cp -f ./bazel-bin/cram "${BUILD}"
rm -f "${SIG}" rm -f "${SIG}"
ssh-keygen -Y sign -f ~/.ssh/id_arrdem@arrdem -n "${SIG}" "${BUILD}" ssh-keygen -Y sign -f "${KEY}" -n "${SIG}" "${BUILD}"
git checkout trunk git checkout trunk

View file

@ -4,7 +4,7 @@
# But ... that's exactly what we want to do. # But ... that's exactly what we want to do.
# So this script exists to find a 'compliant' Python install and use that. # So this script exists to find a 'compliant' Python install and use that.
PYTHONREV="3.10" PYTHONREV="3.11"
CMD="python${PYTHONREV}" CMD="python${PYTHONREV}"
if [ -x "$(command -v "$CMD")" ]; then if [ -x "$(command -v "$CMD")" ]; then