Skip to content

Commit ef33efa

Browse files
committed
Dev via Gitpod Flex
1 parent 1cdbdf7 commit ef33efa

File tree

4 files changed

+73
-3
lines changed

4 files changed

+73
-3
lines changed

.idea/misc.xml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/ide/jetbrains/toolbox/README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22

33
Provides a way to connect to Gitpod Classic workspaces within the JetBrains Toolbox App.
44

5-
## How to Develop
5+
## How to Develop with Gitpod Flex
6+
7+
- Start an environment on [Gitpod Flex](https://app.gitpod.io) with current repository
8+
- Connect to the environment via **JetBrains Gateway** (because we want to restart Toolbox) SSH feature (user: gitpod_devcontainer)
9+
- [optional] Copy ./flex-sync.sh locally and chmod +x, the script is written for macOS, please adjust it if you're using other OS
10+
- Exec `./flex-sync.sh <env_host>`
11+
12+
## How to Develop locally
613

714
### Requires
815
- Java 21

components/ide/jetbrains/toolbox/build.gradle.kts

+18
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,24 @@ val restartToolbox by tasks.creating {
146146
}
147147
}
148148

149+
val buildPluginFlex by tasks.creating(Sync::class.java) {
150+
group = "01.Gitpod"
151+
152+
dependsOn(tasks.named("shadowJar"))
153+
from(tasks.named("shadowJar").get().outputs.files)
154+
155+
val targetDir = Path.of("./build/flex") / pluginId
156+
157+
from("src/main/resources") {
158+
include("extension.json")
159+
include("dependencies.json")
160+
include("icon.svg")
161+
include("icon-gray.svg")
162+
}
163+
164+
into(targetDir)
165+
}
166+
149167
val copyPlugin by tasks.creating(Sync::class.java) {
150168
group = "01.Gitpod"
151169

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
#!/bin/bash
2+
# shellcheck disable=all
3+
#
4+
# Sync the local Toolbox plugins folder from the build results of Gitpod Flex (`build/flex/*`) automatically
5+
# so that you could build with a remote environment
6+
7+
if [ $# -eq 0 ]; then
8+
echo "Usage: $0 <remote_host>"
9+
echo "Example: $0 01944f84-5bc8-7d9b-916a-4fc95e25de12.gitpod.environment"
10+
exit 1
11+
fi
12+
13+
REMOTE_HOST="$1"
14+
LOCAL_DIR="$HOME/Library/Caches/JetBrains/Toolbox/plugins"
15+
REMOTE_DIR="/workspace/gitpod/components/ide/jetbrains/toolbox/build/flex"
16+
DEVCONTAINER_HOST="gitpod_devcontainer@$REMOTE_HOST"
17+
18+
echo "Preparing..."
19+
20+
ssh $DEVCONTAINER_HOST "apt-get update && apt-get install -y rsync inotify-tools" > /dev/null
21+
22+
function sync_and_restart() {
23+
rsync -avz --delete "$DEVCONTAINER_HOST:$REMOTE_DIR/" "$LOCAL_DIR/"
24+
pkill -f 'JetBrains Toolbox' || true
25+
echo debugClean > $HOME/Library/Logs/JetBrains/Toolbox/toolbox.log
26+
code $HOME/Library/Logs/JetBrains/Toolbox/toolbox.log
27+
# In case Toolbox refuses to start
28+
echo "Restarting Toolbox in 3 seconds"
29+
sleep 3
30+
open /Applications/JetBrains\ Toolbox.app
31+
}
32+
33+
echo "Initing..."
34+
35+
sync_and_restart
36+
37+
echo "Watching for changes in $DEVCONTAINER_HOST:$REMOTE_DIR"
38+
39+
ssh $DEVCONTAINER_HOST "inotifywait -m -r -e modify,create,delete,move $REMOTE_DIR" | \
40+
while read path action file; do
41+
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Change detected: $action $file"
42+
# Make sure remote is build
43+
sleep 3
44+
sync_and_restart
45+
done

0 commit comments

Comments
 (0)