Skip to content

Commit 5817393

Browse files
committed
GitHub Actions: Remove obsolete Plugin Verifier cache directory configuration
1 parent cd3d82e commit 5817393

File tree

4 files changed

+22
-11
lines changed

4 files changed

+22
-11
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
outputs:
3434
version: ${{ steps.properties.outputs.version }}
3535
changelog: ${{ steps.properties.outputs.changelog }}
36-
pluginVerifierHomeDir: ${{ steps.properties.outputs.pluginVerifierHomeDir }}
3736
steps:
3837

3938
# Check out the current repository
@@ -61,8 +60,6 @@ jobs:
6160
CHANGELOG="$(./gradlew getChangelog --unreleased --no-header --console=plain -q)"
6261
6362
echo "version=$VERSION" >> $GITHUB_OUTPUT
64-
echo "pluginVerifierHomeDir=~/.pluginVerifier" >> $GITHUB_OUTPUT
65-
6663
echo "changelog<<EOF" >> $GITHUB_OUTPUT
6764
echo "$CHANGELOG" >> $GITHUB_OUTPUT
6865
echo "EOF" >> $GITHUB_OUTPUT
@@ -196,16 +193,9 @@ jobs:
196193
- name: Setup Gradle
197194
uses: gradle/actions/setup-gradle@v4
198195

199-
# Cache Plugin Verifier IDEs
200-
- name: Setup Plugin Verifier IDEs Cache
201-
uses: actions/cache@v4
202-
with:
203-
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
204-
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
205-
206196
# Run Verify Plugin task and IntelliJ Plugin Verifier tool
207197
- name: Run Plugin Verification tasks
208-
run: ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
198+
run: ./gradlew verifyPlugin
209199

210200
# Collect Plugin Verifier Result
211201
- name: Collect Plugin Verifier Result

.idea/gradle.xml

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
### Removed
88

99
- Remove `pluginUntilBuild` obsolete property
10+
- GitHub Actions: Remove obsolete Plugin Verifier cache directory configuration
1011

1112
### Changed
1213

settings.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ rootProject.name = "IntelliJ Platform Plugin Template"
33
plugins {
44
id("org.gradle.toolchains.foojay-resolver-convention") version "0.10.0"
55
}
6+
includeBuild("/Users/hsz/Projects/JetBrains/intellij-platform-gradle-plugin")
7+

0 commit comments

Comments
 (0)