Skip to content

Commit

Permalink
set ideaVersion to latest to dev against latest (#625) (#626)
Browse files Browse the repository at this point in the history
* set ideaVersion to latest to dev against latest (#625)
* bump CI jdk and intellij gradle plugin (#625)
* added dependencies needed when bumping IC-2023.1

Signed-off-by: Andre Dietisheim <[email protected]>
  • Loading branch information
adietish authored Jul 5, 2023
1 parent cf0da15 commit f9b17fa
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/IJ.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew runPluginVerifier -PideaVersion=IC-2022.3
run: ./gradlew runPluginVerifier -PideaVersion=IC-2023.1
- name: Upload report
uses: actions/upload-artifact@v2
if: always()
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand All @@ -29,10 +29,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand All @@ -43,10 +43,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/it.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand Down
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,12 @@ dependencies {
)
integrationTestImplementation(
"com.redhat.devtools.intellij:intellij-common:1.1.0",
"com.redhat.devtools.intellij:intellij-common-ui-test-library:0.2.0"
"com.redhat.devtools.intellij:intellij-common-ui-test-library:0.2.0",
'org.junit.jupiter:junit-jupiter-engine:5.8.2',
'org.junit.jupiter:junit-jupiter-api:5.8.2',
'org.junit.jupiter:junit-jupiter:5.8.2',
'org.junit.platform:junit-platform-launcher:1.9.3',
"com.google.code.gson:gson:2.8.9"
)
}

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ideaVersion=IC-2021.1
ideaVersion=IC-2023.1
# build number ranges
# https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html
sinceIdeaBuild=221
projectVersion=1.0.2-SNAPSHOT
jetBrainsToken=invalid
jetBrainsChannel=stable
intellijPluginVersion=1.13.2
intellijPluginVersion=1.14.2
intellijCommonVersion=1.9.1
telemetryPluginVersion=1.0.0.44
kotlin.stdlib.default.dependency = false
Expand Down

0 comments on commit f9b17fa

Please sign in to comment.