File tree Expand file tree Collapse file tree 11 files changed +23
-8
lines changed Expand file tree Collapse file tree 11 files changed +23
-8
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ dependencies {
96
96
// Read more: https://github.com/JetBrains/gradle-intellij-plugin
97
97
intellijPlatform {
98
98
pluginConfiguration {
99
- name = properties(" pluginName " )
99
+ name = properties(" latestPluginName " )
100
100
version = pluginVersion
101
101
ideaVersion {
102
102
sinceBuild = properties(" pluginSinceBuild" )
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ dependencies {
96
96
// Read more: https://github.com/JetBrains/gradle-intellij-plugin
97
97
intellijPlatform {
98
98
pluginConfiguration {
99
- name = properties(" pluginName " )
99
+ name = properties(" latestPluginName " )
100
100
version = pluginVersion
101
101
ideaVersion {
102
102
sinceBuild = properties(" pluginSinceBuild" )
Original file line number Diff line number Diff line change
1
+ # Code generated by gha-update-image/index-jb-platform-update.ts. DO NOT EDIT.
1
2
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
2
3
# for insight into build numbers and IntelliJ Platform versions.
3
4
pluginSinceBuild =242.19533
@@ -6,4 +7,4 @@ pluginUntilBuild=242.*
6
7
# See https://jb.gg/intellij-platform-builds-list for available build versions.
7
8
pluginVerifierIdeVersions =2024.2
8
9
# Version from "com.jetbrains.intellij.idea" which can be found at https://www.jetbrains.com/intellij-repository/snapshots
9
- platformVersion =242.20224-EAP-CANDIDATE-SNAPSHOT
10
+ platformVersion =242.20224.300
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ environmentName=latest
6
6
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
7
7
pluginGroup =io.gitpod.jetbrains
8
8
pluginName =gitpod-remote
9
+ # TODO(hw): replace pluginName after 2024.2 is stable
10
+ latestPluginName =Gitpod Remote
9
11
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#intellij-extension-type
10
12
platformType =IU
11
13
platformDownloadSources =true
Original file line number Diff line number Diff line change @@ -82,7 +82,8 @@ dependencies {
82
82
// Configure gradle-intellij-plugin plugin.
83
83
intellijPlatform {
84
84
pluginConfiguration {
85
- name = properties(" pluginName" )
85
+ id = properties(" pluginId" )
86
+ name = properties(" latestPluginName" )
86
87
version = pluginVersion
87
88
88
89
description = providers.fileContents(layout.projectDirectory.file(" README.md" )).asText.map {
Original file line number Diff line number Diff line change @@ -82,7 +82,8 @@ dependencies {
82
82
// Configure gradle-intellij-plugin plugin.
83
83
intellijPlatform {
84
84
pluginConfiguration {
85
- name = properties(" pluginName" )
85
+ id = properties(" pluginId" )
86
+ name = properties(" latestPluginName" )
86
87
version = pluginVersion
87
88
88
89
description = providers.fileContents(layout.projectDirectory.file(" README.md" )).asText.map {
Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ environmentName=latest
4
4
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
5
5
pluginGroup =io.gitpod.jetbrains
6
6
pluginName =gitpod-gateway
7
+ # TODO(hw): replace pluginName after 2024.2 is stable
8
+ latestPluginName =Gitpod Gateway
9
+ pluginId =io.gitpod.jetbrains.gateway
7
10
# It is overriden by CI during the build.
8
11
pluginVersion =0.0.1
9
12
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#intellij-extension-type
Original file line number Diff line number Diff line change 3
3
build
4
4
bin
5
5
gitpod-gateway.zip
6
+ jetbrains-gateway-gitpod-plugin.zip
6
7
video
Original file line number Diff line number Diff line change 6
6
- components/ide/jetbrains/gateway-plugin:publish-stable
7
7
workdir : origin
8
8
script : |
9
+ # TODO(hw): replace source gitpod-gateway.zip with jetbrains-gateway-gitpod-plugin.zip after 2024.2 is stable
9
10
cp $COMPONENTS_IDE_JETBRAINS_GATEWAY_PLUGIN__PUBLISH_STABLE/build/distributions/gitpod-gateway.zip gitpod-gateway.zip
10
11
./test.sh
11
12
- name : test-latest
@@ -15,7 +16,7 @@ scripts:
15
16
- components/ide/jetbrains/gateway-plugin:publish-latest
16
17
workdir : origin
17
18
script : |
18
- cp $COMPONENTS_IDE_JETBRAINS_GATEWAY_PLUGIN__PUBLISH_LATEST/build/distributions/gitpod -gateway.zip gitpod-gateway.zip
19
+ cp $COMPONENTS_IDE_JETBRAINS_GATEWAY_PLUGIN__PUBLISH_LATEST/build/distributions/jetbrains -gateway-gitpod-plugin .zip gitpod-gateway.zip
19
20
./test.sh
20
21
- name : install-gui-dependencies
21
22
script : |
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ GATEWAY_PLUGIN_PATH=$(pwd)/gitpod-gateway.zip
4
4
export GATEWAY_PLUGIN_PATH
5
5
HOME=/home/gitpod
6
6
7
+ if [ ! -f " $GATEWAY_PLUGIN_PATH " ]; then
8
+ echo " Gateway plugin zip not found at $GATEWAY_PLUGIN_PATH "
9
+ exit 1
10
+ fi
11
+
7
12
mkdir -p $HOME /.local/share/JetBrains/consentOptions/
8
13
echo -n " rsch.send.usage.stat:1.1:0:1644945193441" > $HOME /.local/share/JetBrains/consentOptions/accepted
9
14
mkdir -p $HOME /.config/JetBrains/JetBrainsClient/options
You can’t perform that action at this time.
0 commit comments