Skip to content

Commit 7ff7930

Browse files
authored
Merge pull request #307 from SeeSharpSoft/fix_eap_build
fix EAP build
2 parents 1335455 + e325fcc commit 7ff7930

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/CronEAP.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: chmod +x gradlew
2424
- name: Build with Gradle
2525
env:
26-
IDEA_VERSION: PY-LATEST-EAP-SNAPSHOT
26+
IDEA_VERSION: LATEST-EAP-SNAPSHOT
2727
GRAMMAR_KIT_VERSION: 2019.3
2828
IDEA_SOURCES: false
2929
run: xvfb-run ./gradlew build

.github/workflows/PullRequest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
include:
19-
- ideaVersion: IC-2020.1.1
19+
- ideaVersion: PY-2020.1.1
2020
gkVersion: 2019.3
21-
- ideaVersion: PY-LATEST-EAP-SNAPSHOT
21+
- ideaVersion: LATEST-EAP-SNAPSHOT
2222
gkVersion: 2019.3
2323

2424
steps:

build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010

1111
plugins {
1212
// https://github.com/JetBrains/gradle-intellij-plugin
13-
id 'org.jetbrains.intellij' version '1.1.3'
13+
id 'org.jetbrains.intellij' version '1.2.0'
1414
id 'jacoco'
1515
id 'com.github.kt3k.coveralls' version '2.8.4'
1616
id "com.github.ManifestClasspath" version "0.1.0-RELEASE"
@@ -27,7 +27,7 @@ jacocoTestReport {
2727
}
2828

2929
group 'net.seesharpsoft.intellij.plugins'
30-
version '2.17.1'
30+
version '2.17.2'
3131

3232
apply plugin: 'java'
3333
project.sourceCompatibility = JavaVersion.VERSION_11
@@ -80,7 +80,6 @@ intellij {
8080
// IDE version - https://www.jetbrains.com/intellij-repository/releases
8181
version = System.getenv().getOrDefault('IDEA_VERSION', 'IC-2020.1.1')
8282
pluginName = 'CSV Plugin'
83-
instrumentCode = true
8483
updateSinceUntilBuild = false
8584
downloadSources = Boolean.parseBoolean(System.getenv().getOrDefault('IDEA_SOURCES', "true"))
8685
}

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ FIX: Past few versions of this plugin don't show colors #298
5757
</change-notes>
5858

5959
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
60-
<idea-version since-build="2020.1" />
60+
<idea-version since-build="201" />
6161

6262
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
6363
on how to target different products -->

0 commit comments

Comments
 (0)