Compare commits
No commits in common. "a8a34013a520cb3cb2deba046ba9a3499496df57" and "72805e9a1f7e1b619f4133acaeb24ba5742731e9" have entirely different histories.
a8a34013a5
...
72805e9a1f
2 changed files with 0 additions and 38 deletions
|
@ -1,36 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
VERSION="$(echo $1 | jq -Rr @html)"
|
||||
BINARY='runsc'
|
||||
SHIM='containerd-shim-runsc-v1'
|
||||
URL_BASE="https://storage.googleapis.com/gvisor/releases/release/"
|
||||
URL="${URL_BASE}${VERSION}/$(uname -m)/"
|
||||
URL_X64="${URL_BASE}${VERSION}/x86_64/"
|
||||
URL_ARM="${URL_BASE}${VERSION}/aarch64/"
|
||||
|
||||
STATUS=$(curl -s -o /dev/null -I -w "%{http_code}" "${URL}${BINARY}")
|
||||
EXIT=0
|
||||
|
||||
case $STATUS in
|
||||
200)
|
||||
echo "Release: ${VERSION}"
|
||||
echo ""
|
||||
echo "x86_64 sha512:"
|
||||
echo "$(curl -s ${URL_X64}${BINARY}.sha512)"
|
||||
echo "$(curl -s ${URL_X64}${SHIM}.sha512)"
|
||||
echo ""
|
||||
echo "aarch64 sha512:"
|
||||
echo "$(curl -s ${URL_ARM}${BINARY}.sha512)"
|
||||
echo "$(curl -s ${URL_ARM}${SHIM}.sha512)"
|
||||
;;
|
||||
404)
|
||||
echo "Release ${VERSION} not found"
|
||||
EXIT=1
|
||||
;;
|
||||
*)
|
||||
echo "Error occured with status ${STATUS}"
|
||||
EXIT=2
|
||||
;;
|
||||
esac
|
||||
|
||||
exit $EXIT
|
2
gvisor-bin/.gitignore
vendored
2
gvisor-bin/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
|||
/runsc
|
||||
/containerd-shim-runsc-v1
|
Loading…
Reference in a new issue