Skip to content

Commit f713c87

Browse files
committed
intellij: 0.1.4+243 and upgradle
1 parent e98eead commit f713c87

File tree

8 files changed

+14
-26
lines changed

8 files changed

+14
-26
lines changed

.github/workflows/intellij-build.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ jobs:
5555

5656
# Setup Gradle
5757
- name: Setup Gradle
58-
uses: gradle/actions/setup-gradle@v3
59-
with:
60-
gradle-home-cache-cleanup: true
58+
uses: gradle/actions/setup-gradle@v4
6159

6260
# Set environment variables
6361
- name: Export Properties
@@ -119,9 +117,7 @@ jobs:
119117

120118
# Setup Gradle
121119
- name: Setup Gradle
122-
uses: gradle/actions/setup-gradle@v3
123-
with:
124-
gradle-home-cache-cleanup: true
120+
uses: gradle/actions/setup-gradle@v4
125121

126122
# Run tests
127123
- name: Run Tests
@@ -163,6 +159,9 @@ jobs:
163159
# Check out the current repository
164160
- name: Fetch Sources
165161
uses: actions/checkout@v4
162+
with:
163+
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
164+
fetch-depth: 0 # a full history is required for pull request analysis
166165

167166
# Set up Java environment for the next steps
168167
- name: Setup Java
@@ -204,9 +203,7 @@ jobs:
204203

205204
# Setup Gradle
206205
- name: Setup Gradle
207-
uses: gradle/actions/setup-gradle@v3
208-
with:
209-
gradle-home-cache-cleanup: true
206+
uses: gradle/actions/setup-gradle@v4
210207

211208
# Cache Plugin Verifier IDEs
212209
- name: Setup Plugin Verifier IDEs Cache

.github/workflows/intellij-release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@ jobs:
3434

3535
# Setup Gradle
3636
- name: Setup Gradle
37-
uses: gradle/actions/setup-gradle@v3
38-
with:
39-
gradle-home-cache-cleanup: true
37+
uses: gradle/actions/setup-gradle@v4
4038

4139
# Set environment variables
4240
- name: Export Properties

.github/workflows/intellij-run-ui-tests.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,7 @@ jobs:
4444

4545
# Setup Gradle
4646
- name: Setup Gradle
47-
uses: gradle/actions/setup-gradle@v3
48-
with:
49-
gradle-home-cache-cleanup: true
47+
uses: gradle/actions/setup-gradle@v4
5048

5149
# Run IDEA prepared for UI testing
5250
- name: Run IDE

intellij/gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ pluginGroup = org.basedsoft.plugins.basedtyping
44
pluginName = basedtyping
55
pluginRepositoryUrl = https://github.com/KotlinIsland/basedtyping
66
# SemVer format -> https://semver.org
7-
pluginVersion = 0.1.4
7+
pluginVersion = 0.1.4+243
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 233
11-
pluginUntilBuild = 242.*
11+
pluginUntilBuild = 243.*
1212

1313
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1414
platformType = PC
15-
platformVersion = 2023.3.6
15+
platformVersion = 2023.3.7
1616

1717
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1818
# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
@@ -21,7 +21,7 @@ platformPlugins =
2121
platformBundledPlugins = PythonCore
2222

2323
# Gradle Releases -> https://github.com/gradle/gradle/releases
24-
gradleVersion = 8.9
24+
gradleVersion = 8.10.2
2525

2626
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
2727
kotlin.stdlib.default.dependency = false

intellij/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ junit = "4.13.2"
44

55
# plugins
66
changelog = "2.2.1"
7-
intelliJPlatform = "2.0.1"
7+
intelliJPlatform = "2.1.0"
88
kotlin = "1.9.25"
99
kover = "0.8.3"
1010

79 Bytes
Binary file not shown.

intellij/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

intellij/src/test/java/com/jetbrains/python/fixtures/PyTestCase.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -431,11 +431,6 @@ protected void refactorUsingHandler(@NotNull final RefactoringActionHandler hand
431431
handler.invoke(myFixture.getProject(), editor, myFixture.getFile(), ((EditorEx)editor).getDataContext());
432432
}
433433

434-
public static String getHelpersPath() {
435-
return new File(PythonHelpersLocator.getPythonCommunityPath(), "helpers").getPath();
436-
}
437-
438-
439434
/**
440435
* Compares sets with string sorting them and displaying one-per-line to make comparision easier
441436
*

0 commit comments

Comments
 (0)