File tree Expand file tree Collapse file tree 4 files changed +13
-11
lines changed
Expand file tree Collapse file tree 4 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,13 @@ runs:
2323 --no-configuration-cache \
2424 --no-build-cache \
2525 --no-daemon \
26- --max-workers=1
26+ --max-workers=1 \
27+ -Dorg.gradle.internal.http.socketTimeout=120000 \
28+ -Dorg.gradle.internal.http.connectionTimeout=120000 \
29+ -Dorg.gradle.internal.network.retry.max.attempts=10
2730 env :
2831 GRADLE_USER_HOME : /mnt/gradle-cache
29- GRADLE_OPTS : " -Dorg.gradle.configuration-cache=false -Dorg.gradle.caching=false "
32+ GRADLE_OPTS : " -Dorg.gradle.configuration-cache=false"
3033
3134inputs :
3235 version :
Original file line number Diff line number Diff line change 3131 id : versions
3232 run : echo "TAGGED_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
3333
34- - name : Validate Version
34+ - name : Validate version
3535 id : check_version
3636 run : |
3737 if [[ "${{ steps.versions.outputs.TAGGED_VERSION }}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
4040 echo "valid=false" >> $GITHUB_OUTPUT
4141 fi
4242
43- - name : Get branch data
44- uses : tj-actions/branch-names@v7
45- id : branches
46-
4743 - name : Build and Test
4844 uses : ./.github/actions/build
4945 with :
Original file line number Diff line number Diff line change @@ -3,13 +3,15 @@ fun properties(key: String) = providers.gradleProperty(key)
33plugins {
44 id(" java" )
55 id(" org.jetbrains.kotlin.jvm" ) version " 2.1.0"
6- id(" org.jetbrains.intellij.platform" ) version " 2.5.0 "
6+ id(" org.jetbrains.intellij.platform" ) version " 2.10.5 "
77}
88
99group = properties(" pluginGroup" ).get()
1010version = properties(" pluginVersion" ).get()
1111
1212repositories {
13+ gradlePluginPortal()
14+ google()
1315 mavenCentral()
1416
1517 intellijPlatform {
@@ -25,6 +27,8 @@ dependencies {
2527 val version = providers.gradleProperty(" platformVersion" ).getOrElse(" 2024.3" )
2628 create(type, version)
2729
30+ pluginVerifier()
31+
2832 testFramework(org.jetbrains.intellij.platform.gradle.TestFrameworkType .Platform )
2933 bundledPlugin(" JavaScript" )
3034 }
@@ -35,8 +39,7 @@ dependencies {
3539intellijPlatform {
3640 pluginVerification {
3741 ides {
38- // ide(org.jetbrains.intellij.platform.gradle.IntelliJPlatformType.IntellijIdeaCommunity, "2024.3.7")
39- ide(org.jetbrains.intellij.platform.gradle.IntelliJPlatformType .IntellijIdeaCommunity , " 2024.3" )
42+ create(org.jetbrains.intellij.platform.gradle.IntelliJPlatformType .IntellijIdeaCommunity , " 2024.3" )
4043 }
4144 }
4245}
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.12.1 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.13 -bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments