e263a78bf1
This repository depends on root access for testing and VM support for cross-platform development neither of which is supported by Gitpod and so it was deprecated in this repository. FIXME: Implementation is rushed Blocked by: gitpod-io/gitpod#1265 Blocked by: gitpod-io/gitpod#39 Signed-off-by: Jacob Hrbek <kreyren@member.fsf.org>
43 lines
1.1 KiB
Bash
43 lines
1.1 KiB
Bash
#!/bin/sh
|
|
# Created by Jacob Hrbek <kreyren@rixotstudio.cz> under GPLv3 <https://www.gnu.org/licenses/gpl-3.0.en.html> in 19/05/2020 16:28
|
|
|
|
###! Terminate gitpod if the blocking root access bug has not been resolved yet
|
|
|
|
# FIXME: Quick-script
|
|
|
|
set -e
|
|
|
|
# FIXME: Rushed
|
|
die() {
|
|
printf 'FATAL: %s\n' "$2"
|
|
exit "$1"
|
|
}
|
|
|
|
# FIXME: Sanitize
|
|
if ! command -v curl 1>/dev/null; then
|
|
apt-get update
|
|
apt-get install curl -y
|
|
elif command -v curl 1>/dev/null; then
|
|
true
|
|
else
|
|
die 255 "processing curl"
|
|
fi
|
|
|
|
bugStatus="$(curl https://api.github.com/repos/gitpod-io/gitpod/issues/39 2>/dev/null | grep -o state.* || true)"
|
|
|
|
case "$bugStatus" in
|
|
"state\": \"open\",")
|
|
printf '\033[31m\033[1mBLOCKED:\033[0m %s\n' "Gitpod does not provide a root access which is mandatory for this repository, see it's tracking in https://github.com/gitpod-io/gitpod/issues/39"
|
|
if [ "$GITPOD_IGNORE_BLOCKERS" != 1 ]; then
|
|
exit 1
|
|
else
|
|
true
|
|
fi
|
|
;;
|
|
"state\": \"closed\",")
|
|
true
|
|
;;
|
|
*)
|
|
printf '\033[31m\033[1mBUG:\033[0m %s\n' "GitHub API returned an unknown state '$bugStatus' of bug https://github.com/gitpod-io/gitpod/issues/39"
|
|
exit 1
|
|
esac |