Skip to content

Commit

Permalink
fix: upgrade to new version of EAP 243.18137.10 (#92)
Browse files Browse the repository at this point in the history
Co-authored-by: jvmakine <[email protected]>
  • Loading branch information
lyonlai and jvmakine authored Oct 3, 2024
1 parent f4bc758 commit b766db4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,15 @@ jobs:
- name: Init Hermit
run: ./bin/hermit env -r >> $GITHUB_ENV
- name: Test
run: gradle clean test --info
run: |
gradle clean test --stacktrace
- name: Get Test report
uses: actions/upload-artifact@v4
if: always()
with:
name: test-reports-${{matrix.release_type}}
path: |
build/reports/tests/**/*
verify_new:
name: Verify Plugin Against Latest Releases
runs-on: ubuntu-latest
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ version = project.properties["version"] ?: "1.0-SNAPSHOT"
plugins {
id("java")
kotlin("kapt") version "1.9.25"
id("org.jetbrains.intellij.platform") version "2.0.0"
id("org.jetbrains.intellij.platform") version "2.0.1"

id("org.jetbrains.kotlin.jvm") version "1.9.25"
id("org.jetbrains.kotlin.plugin.serialization") version "1.4.32"
id("org.jetbrains.kotlin.plugin.serialization") version "1.9.25"
}

// region Build, dependencies
Expand Down Expand Up @@ -63,7 +63,7 @@ val arrowVersion = "0.11.0"
dependencies {
intellijPlatform {
intellijIdeaUltimate(product.sdkVersion, useInstaller = false)
pluginVerifier("1.371")
pluginVerifier("1.378")
plugins(
"org.jetbrains.plugins.go:${product.goPluginVersion}"
)
Expand All @@ -79,7 +79,7 @@ dependencies {

implementation("org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion")
implementation("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.1.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.2")
implementation("io.arrow-kt:arrow-core:$arrowVersion")
implementation("io.arrow-kt:arrow-syntax:$arrowVersion")
kapt("io.arrow-kt:arrow-meta:$arrowVersion")
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ kotlin.code.style=official

# The latest supported versions. Note, these are updated automatically from update-major-versions.sh
IIC.release.version=242.20224.300
IIC.eap.version=242.20224.91
IIC.eap.version=243.18137.10

IIC.release.go_plugin.version=242.20224.300
IIC.eap.go_plugin.version=242.20224.159
IIC.eap.go_plugin.version=243.18137.10
GO.release.version=242.20224.306
GO.eap.version=242.20224.106
GO.eap.version=243.18137.20
# The oldest supported versions.
IIC.from.version=222.4554.10
GO.from.version=222.4554.12

0 comments on commit b766db4

Please sign in to comment.