From 6ed1b46e8126310a4ef8f90acb0c7ab43286fd46 Mon Sep 17 00:00:00 2001 From: Ryan Gurney Date: Mon, 12 Dec 2022 10:48:24 -0800 Subject: [PATCH] Remove upper bound for IntelliJ and fix PlatformVersion to run on oldest --- .github/workflows/build.yml | 21 --------------------- build.gradle.kts | 2 +- gradle.properties | 5 +++-- 3 files changed, 4 insertions(+), 24 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1c6213f..cf180e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,27 +32,6 @@ jobs: version: ${{ steps.properties.outputs.version }} changelog: ${{ steps.properties.outputs.changelog }} steps: - # Clean Workspace - - name: Clean Workspace - shell: bash - run: | - echo "Listing 100 largest packages" - dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 100 - df -h - echo "Removing large packages" - sudo apt-get remove -y '^dotnet-.*' - sudo apt-get remove -y '^llvm-.*' - sudo apt-get remove -y 'php.*' - sudo apt-get remove -y '^mongodb-.*' - sudo apt-get remove -y '^mysql-.*' - sudo apt-get remove -y azure-cli google-cloud-sdk hhvm google-chrome-stable firefox powershell mono-devel libgl1-mesa-dri - sudo apt-get autoremove -y - sudo apt-get clean - df -h - echo "Removing large directories" - rm -rf /usr/share/dotnet/ - df -h - # Check out current repository - name: Fetch Sources uses: actions/checkout@v2.4.0 diff --git a/build.gradle.kts b/build.gradle.kts index cad238e..85405b2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -67,7 +67,7 @@ tasks { patchPluginXml { version.set(properties("pluginVersion")) sinceBuild.set(properties("pluginSinceBuild")) - untilBuild.set(properties("pluginUntilBuild")) + untilBuild.set("") // Extract the section from README.md and provide for the plugin's manifest pluginDescription.set( diff --git a/gradle.properties b/gradle.properties index 7926227..8fa6615 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,11 +9,12 @@ pluginVersion = 1.0.9 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions. pluginSinceBuild = 211 -pluginUntilBuild = 223.* +# Removed to ease compatibility of future IntelliJ releases and this plugin. See GH issue #43 +#pluginUntilBuild = null # IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties platformType = IC -platformVersion = 2022.2 +platformVersion = 2021.1 # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22