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
|
pluginSinceBuild = 193
|
||||||
pluginUntilBuild = 202.*
|
pluginUntilBuild = 202.*
|
||||||
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
|
# 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
|
platformType = IC
|
||||||
platformVersion = 2019.3
|
platformVersion = 2019.3
|
||||||
|
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
@ -169,6 +169,13 @@ jobs:
|
|||||||
path: ~/.gradle/wrapper
|
path: ~/.gradle/wrapper
|
||||||
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
|
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
|
# Run IntelliJ Plugin Verifier action using GitHub Action
|
||||||
- name: Verify Plugin
|
- name: Verify Plugin
|
||||||
run: ./gradlew runPluginVerifier
|
run: ./gradlew runPluginVerifier
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### 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
|
- 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
|
### Changed
|
||||||
- Switch Gradle Wrapper to `-all` to improve the IntelliSense
|
- Switch Gradle Wrapper to `-all` to improve the IntelliSense
|
||||||
|
@ -7,7 +7,7 @@ pluginVersion = 0.6.0
|
|||||||
pluginSinceBuild = 193
|
pluginSinceBuild = 193
|
||||||
pluginUntilBuild = 202.*
|
pluginUntilBuild = 202.*
|
||||||
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
|
# 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
|
platformType = IC
|
||||||
platformVersion = 2019.3
|
platformVersion = 2019.3
|
||||||
|
Loading…
Reference in New Issue
Block a user