mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* [JetBrains] Upgrade platform version of stable and latest Gitpod Gateway plugins * Update integration tests gateway build path
17 lines
551 B
Bash
Executable File
17 lines
551 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
GATEWAY_PLUGIN_PATH=$(pwd)/jetbrains-gateway-gitpod-plugin.zip
|
|
export GATEWAY_PLUGIN_PATH
|
|
HOME=/home/gitpod
|
|
|
|
if [ ! -f "$GATEWAY_PLUGIN_PATH" ]; then
|
|
echo "Gateway plugin zip not found at $GATEWAY_PLUGIN_PATH"
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p $HOME/.local/share/JetBrains/consentOptions/
|
|
echo -n "rsch.send.usage.stat:1.1:0:1644945193441" > $HOME/.local/share/JetBrains/consentOptions/accepted
|
|
mkdir -p $HOME/.config/JetBrains/JetBrainsClient/options
|
|
touch $HOME/.config/JetBrains/JetBrainsClient/options/ide.general.xml
|
|
./gradlew test -i
|