Skip to content

Commit

Permalink
added version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
phoffmeister authored and AmailP committed Aug 22, 2019
1 parent fea1100 commit 7b9625b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ env:
- IDEA_VERSION=IC-2018.1.6
- IDEA_VERSION=IC-183.4284.36
- IDEA_VERSION=IC-191.6183.87
- IDEA_VERSION=IC-192.5728.98

script:
- ./gradlew --console plain check verifyPlugin
Expand All @@ -20,4 +21,4 @@ jobs:
- stage: release
if: tag IS present
script:
- ./gradlew --console plain publishPlugin
- ./gradlew --console plain publishPlugin
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,16 @@ repositories {

version = gitVersion()

def intellijVersion = System.getenv().getOrDefault("IDEA_VERSION", "IC-191.6183.87")
def intellijVersion = System.getenv().getOrDefault("IDEA_VERSION", "IC-192.5728.98")

def pythonPluginForVersion = [
"IC-2017.3.5": "PythonCore:2017.3.173.4674.59",
"IC-2018.1.6": "PythonCore:2018.1.181.5087.50",
"IC-2018.2.4": "PythonCore:2018.2.182.4505.22",
"IC-183.4284.36": "PythonCore:2018.3.183.4284.36",
"IC-191.6183.87": "PythonCore:2019.1.191.6183.53",
"LATEST-EAP-SNAPSHOT": "PythonCore:2019.1.191.6183.53",
"IC-192.5728.98": "PythonCore:2019.2.192.5728.98",
"LATEST-EAP-SNAPSHOT": "PythonCore:2019.2.192.5728.98",
]

intellij {
Expand All @@ -45,7 +46,7 @@ publishPlugin {

patchPluginXml {
sinceBuild "173"
untilBuild "191.*"
untilBuild "192.*"
}

apply plugin: 'scala'
Expand Down

0 comments on commit 7b9625b

Please sign in to comment.