mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Cache downloaded IDEs used by Plugin Verifier for the verification
This commit is contained in:
parent
b504a99942
commit
624c6950be
2
.github/template-cleanup/gradle.properties
vendored
2
.github/template-cleanup/gradle.properties
vendored
@ -7,7 +7,7 @@ pluginVersion = 0.0.1
|
||||
pluginSinceBuild = 193
|
||||
pluginUntilBuild = 202.*
|
||||
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
|
||||
pluginVerifierIdeVersions = IC-2019.3, IC-2020.1, IC-2020.2
|
||||
pluginVerifierIdeVersions = 2019.3, 2020.1, 2020.2
|
||||
|
||||
platformType = IC
|
||||
platformVersion = 2019.3
|
||||
|
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
@ -169,6 +169,13 @@ jobs:
|
||||
path: ~/.gradle/wrapper
|
||||
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
|
||||
|
||||
# Cache Plugin Verifier IDEs
|
||||
- name: Setup Plugin Verifier IDEs Cache
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.pluginVerifier/ides
|
||||
key: ${{ runner.os }}-plugin-verifier-ides
|
||||
|
||||
# Run IntelliJ Plugin Verifier action using GitHub Action
|
||||
- name: Verify Plugin
|
||||
run: ./gradlew runPluginVerifier
|
||||
|
@ -5,6 +5,7 @@
|
||||
## [Unreleased]
|
||||
### Added
|
||||
- Integration with [IntelliJ Plugin Verifier](https://github.com/JetBrains/intellij-plugin-verifier) through the [Gradle IntelliJ Plugin](https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl) `runPluginVerifier` task
|
||||
- Cache downloaded IDEs used by Plugin Verifier for the verification
|
||||
|
||||
### Changed
|
||||
- Switch Gradle Wrapper to `-all` to improve the IntelliSense
|
||||
|
@ -7,7 +7,7 @@ pluginVersion = 0.6.0
|
||||
pluginSinceBuild = 193
|
||||
pluginUntilBuild = 202.*
|
||||
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
|
||||
pluginVerifierIdeVersions = IC-2019.3, IC-2020.1, IC-2020.2
|
||||
pluginVerifierIdeVersions = 2019.3, 2020.1, 2020.2
|
||||
|
||||
platformType = IC
|
||||
platformVersion = 2019.3
|
||||
|
Loading…
Reference in New Issue
Block a user