Skip to content

Commit 22732f0

Browse files
authored
Merge pull request #2728 from digma-ai/support-2025.2-EAP
support 2025.2 eap
2 parents 7346b24 + e6a9a22 commit 22732f0

29 files changed

+188
-149
lines changed

.github/workflows/build-branches.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build-workflow:
1010
strategy:
1111
matrix:
12-
profile: [ p241, p242, p243, p251 ]
12+
profile: [ p241, p242, p243, p251, p252 ]
1313
uses: ./.github/workflows/build-workflow.yml
1414
with:
1515
build-profile: ${{ matrix.profile }}
@@ -19,7 +19,7 @@ jobs:
1919
build-workflow-with-rider:
2020
strategy:
2121
matrix:
22-
profile: [ p241, p242, p243, p251 ]
22+
profile: [ p241, p242, p243, p251, p252 ]
2323
uses: ./.github/workflows/build-workflow.yml
2424
with:
2525
build-profile: ${{ matrix.profile }}
@@ -31,7 +31,7 @@ jobs:
3131
# plugin-verifier-workflow:
3232
# strategy:
3333
# matrix:
34-
# profile: [ p241, p242, p251 ]
34+
# profile: [ p241, p242, p243, p251, p252 ]
3535
# uses: ./.github/workflows/plugin-verifier-workflow.yml
3636
# with:
3737
# build-profile: ${{ matrix.profile }}

.github/workflows/build-main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build-workflow:
88
strategy:
99
matrix:
10-
profile: [ p241, p242, p243, p251 ]
10+
profile: [ p241, p242, p243, p251, p252 ]
1111
uses: ./.github/workflows/build-workflow.yml
1212
with:
1313
build-profile: ${{ matrix.profile }}
@@ -18,7 +18,7 @@ jobs:
1818
build-workflow-with-rider:
1919
strategy:
2020
matrix:
21-
profile: [ p241, p242, p243, p251 ]
21+
profile: [ p241, p242, p243, p251, p252 ]
2222
uses: ./.github/workflows/build-workflow.yml
2323
with:
2424
build-profile: ${{ matrix.profile }}
@@ -29,7 +29,7 @@ jobs:
2929
plugin-verifier-workflow:
3030
strategy:
3131
matrix:
32-
profile: [ p241, p242, p243, p251 ]
32+
profile: [ p241, p242, p243, p251, p252 ]
3333
uses: ./.github/workflows/plugin-verifier-workflow.yml
3434
with:
3535
build-profile: ${{ matrix.profile }}

.github/workflows/build-pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build-workflow:
99
strategy:
1010
matrix:
11-
profile: [ p241, p242, p243, p251 ]
11+
profile: [ p241, p242, p243, p251, p252 ]
1212
uses: ./.github/workflows/build-workflow.yml
1313
with:
1414
build-profile: ${{ matrix.profile }}
@@ -19,7 +19,7 @@ jobs:
1919
build-workflow-with-rider:
2020
strategy:
2121
matrix:
22-
profile: [ p241, p242, p243, p251 ]
22+
profile: [ p241, p242, p243, p251, p252 ]
2323
uses: ./.github/workflows/build-workflow.yml
2424
with:
2525
build-profile: ${{ matrix.profile }}
@@ -30,7 +30,7 @@ jobs:
3030
plugin-verifier-workflow:
3131
strategy:
3232
matrix:
33-
profile: [ p241, p242, p243, p251 ]
33+
profile: [ p241, p242, p243, p251, p252 ]
3434
uses: ./.github/workflows/plugin-verifier-workflow.yml
3535
with:
3636
build-profile: ${{ matrix.profile }}

.github/workflows/build-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ jobs:
5252

5353
- name: Build Plugin
5454
if: ${{ inputs.build-with-rider != 'true' }}
55-
run: ./gradlew clean test buildPlugin --no-daemon --no-configuration-cache -PbuildProfile=${{ inputs.build-profile }} -PbuildSearchableOptions=true
55+
run: ./gradlew clean test buildPlugin --no-daemon -PbuildProfile=${{ inputs.build-profile }} -PbuildSearchableOptions=true
5656

5757
- name: Build Plugin with Rider
5858
if: ${{ inputs.build-with-rider == 'true' }}
59-
run: ./gradlew clean test buildPlugin --no-daemon --no-configuration-cache -PbuildWithRider=true -PbuildProfile=${{ inputs.build-profile }} -PbuildSearchableOptions=true
59+
run: ./gradlew clean test buildPlugin --no-daemon -PbuildWithRider=true -PbuildProfile=${{ inputs.build-profile }} -PbuildSearchableOptions=true
6060

6161
- name: Prepare Plugin Artifact
6262
if: ${{ inputs.build-with-rider != 'true' }}

.github/workflows/plugin-verifier-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747

4848
- name: Run Plugin Verifier
49-
run: ./gradlew buildPlugin verifyPlugin --no-daemon --no-configuration-cache -PbuildProfile=${{ inputs.build-profile }}
49+
run: ./gradlew buildPlugin verifyPlugin --no-daemon -PbuildProfile=${{ inputs.build-profile }}
5050

5151
- name: Collect Plugin Verifier Result
5252
if: ${{ inputs.build-with-rider != 'true' }}

.github/workflows/publish-to-jetbrains-and-increment-version.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
publish-workflow:
1414
strategy:
1515
matrix:
16-
profile: [ p241, p242, p243, p251 ]
16+
profile: [ p241, p242, p243, p251, p252 ]
1717
uses: ./.github/workflows/publish-workflow.yml
1818
with:
1919
build-profile: ${{ matrix.profile }}
@@ -62,13 +62,13 @@ jobs:
6262
env:
6363
CHANGELOG: ${{ steps.exportchangelog.outputs.changelog }}
6464
run: |
65-
./gradlew --no-daemon --no-configuration-cache patchChangelog --release-note="$CHANGELOG"
65+
./gradlew --no-daemon patchChangelog --release-note="$CHANGELOG"
6666
6767
6868
- name: Increment version
6969
run: |
70-
./gradlew --no-daemon --no-configuration-cache incrementSemanticVersionPatch
71-
./gradlew --no-daemon --no-configuration-cache printSemanticVersion -q
70+
./gradlew --no-daemon incrementSemanticVersionPatch
71+
./gradlew --no-daemon printSemanticVersion -q
7272
7373
7474

.github/workflows/publish-workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ jobs:
6868
env:
6969
CHANGELOG: ${{ steps.exportchangelog.outputs.changelog }}
7070
run: |
71-
./gradlew --no-daemon --no-configuration-cache -PbuildProfile=${{ inputs.build-profile }} patchChangelog --release-note="$CHANGELOG"
71+
./gradlew --no-daemon -PbuildProfile=${{ inputs.build-profile }} patchChangelog --release-note="$CHANGELOG"
7272
7373
- name: Build plugin
74-
run: ./gradlew test buildPlugin --no-daemon --no-configuration-cache -PbuildProfile=${{ inputs.build-profile }} -PbuildSearchableOptions=true
74+
run: ./gradlew test buildPlugin --no-daemon -PbuildProfile=${{ inputs.build-profile }} -PbuildSearchableOptions=true
7575

7676

7777
# Publish the plugin to the Marketplace
@@ -81,7 +81,7 @@ jobs:
8181
DIGMA_JB_PRIVATE_KEY_PASSWORD: ${{ secrets.DIGMA_JB_PRIVATE_KEY_PASSWORD }}
8282
DIGMA_JB_CERTIFICATE_CHAIN_FILE: ${{ secrets.DIGMA_JB_CERTIFICATE_CHAIN_FILE }}
8383
DIGMA_JB_PRIVATE_KEY_FILE: ${{ secrets.DIGMA_JB_PRIVATE_KEY_FILE }}
84-
run: ./gradlew publishPlugin --no-daemon --no-configuration-cache -PbuildProfile=${{ inputs.build-profile }} -PbuildSearchableOptions=true
84+
run: ./gradlew publishPlugin --no-daemon -PbuildProfile=${{ inputs.build-profile }} -PbuildSearchableOptions=true
8585

8686

8787
# todo: delete the release if workflow fails, but what about rerun ? maybe disable rerun for publish workflow
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Run IDEA Community - 2025.2" type="GradleRunConfiguration" factoryName="Gradle">
3+
<log_file alias="idea.log" path="$PROJECT_DIR$/build/idea-sandbox/system/log/idea_IC.log" />
4+
<ExternalSystemSettings>
5+
<option name="executionName" />
6+
<option name="externalProjectPath" value="$PROJECT_DIR$" />
7+
<option name="externalSystemIdString" value="GRADLE" />
8+
<option name="scriptParameters" value="-PbuildProfile=p252 -x test" />
9+
<option name="taskDescriptions">
10+
<list />
11+
</option>
12+
<option name="taskNames">
13+
<list>
14+
<option value="runIde" />
15+
</list>
16+
</option>
17+
<option name="vmOptions" value="" />
18+
</ExternalSystemSettings>
19+
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
20+
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
21+
<DebugAllEnabled>false</DebugAllEnabled>
22+
<RunAsTest>false</RunAsTest>
23+
<method v="2" />
24+
</configuration>
25+
</component>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Run IDEA Ultimate - 2025.2" type="GradleRunConfiguration" factoryName="Gradle">
3+
<log_file alias="idea.log" path="$PROJECT_DIR$/build/idea-sandbox/system/log/idea_IU.log" />
4+
<ExternalSystemSettings>
5+
<option name="executionName" />
6+
<option name="externalProjectPath" value="$PROJECT_DIR$" />
7+
<option name="externalSystemIdString" value="GRADLE" />
8+
<option name="scriptParameters" value="-PbuildWIthUltimate=true -PbuildProfile=p252 -x test" />
9+
<option name="taskDescriptions">
10+
<list />
11+
</option>
12+
<option name="taskNames">
13+
<list>
14+
<option value="runIde" />
15+
</list>
16+
</option>
17+
<option name="vmOptions" value="" />
18+
</ExternalSystemSettings>
19+
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
20+
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
21+
<DebugAllEnabled>false</DebugAllEnabled>
22+
<RunAsTest>false</RunAsTest>
23+
<method v="2" />
24+
</configuration>
25+
</component>

.run/Run Rider - 2025.2.run.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Run Rider - 2025.2" type="GradleRunConfiguration" factoryName="Gradle">
3+
<log_file alias="idea.log" path="$PROJECT_DIR$/build/idea-sandbox/system/log/idea_RD.log" />
4+
<ExternalSystemSettings>
5+
<option name="executionName" />
6+
<option name="externalProjectPath" value="$PROJECT_DIR$" />
7+
<option name="externalSystemIdString" value="GRADLE" />
8+
<option name="scriptParameters" value="-PbuildWithRider=true -PbuildProfile=p252 -x test" />
9+
<option name="taskDescriptions">
10+
<list />
11+
</option>
12+
<option name="taskNames">
13+
<list>
14+
<option value="runIde" />
15+
</list>
16+
</option>
17+
<option name="vmOptions" value="" />
18+
</ExternalSystemSettings>
19+
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
20+
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
21+
<DebugAllEnabled>false</DebugAllEnabled>
22+
<RunAsTest>false</RunAsTest>
23+
<method v="2" />
24+
</configuration>
25+
</component>

0 commit comments

Comments
 (0)