Skip to content

Commit 9e29c0a

Browse files
authored
Add platform 212 to matrix (#356)
1 parent b7f4c7c commit 9e29c0a

File tree

15 files changed

+246
-262
lines changed

15 files changed

+246
-262
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,13 @@ jobs:
3737
strategy:
3838
matrix:
3939
include:
40-
- idea_version: "IU-2020.3.3"
41-
java_version: "1.11"
42-
php_plugin_version: "203.7148.15"
43-
psi_viewer_plugin_version: "203-SNAPSHOT"
44-
grammar_kit_plugin_version: "2020.2.1"
45-
since_build: "203"
46-
until_build: "203.*"
47-
- idea_version: "IU-2021.1"
48-
java_version: "1.11"
49-
php_plugin_version: "211.6693.120"
50-
psi_viewer_plugin_version: "211-SNAPSHOT"
51-
grammar_kit_plugin_version: "2020.2.1"
52-
since_build: "211"
53-
until_build: "211.*"
40+
- idea_version: "IU-2021.2.2"
41+
java_version: "11"
42+
php_plugin_version: "212.5284.49"
43+
psi_viewer_plugin_version: "212-SNAPSHOT"
44+
grammar_kit_plugin_version: "2021.1.3"
45+
since_build: "212"
46+
until_build: "212.*"
5447

5548
steps:
5649

@@ -102,20 +95,13 @@ jobs:
10295
strategy:
10396
matrix:
10497
include:
105-
- idea_version: "IU-2020.3.3"
106-
java_version: "1.11"
107-
php_plugin_version: "203.7148.15"
108-
psi_viewer_plugin_version: "203-SNAPSHOT"
109-
grammar_kit_plugin_version: "2020.2.1"
110-
since_build: "203"
111-
until_build: "203.*"
112-
- idea_version: "IU-2021.1"
113-
java_version: "1.11"
114-
php_plugin_version: "211.6693.120"
115-
psi_viewer_plugin_version: "211-SNAPSHOT"
116-
grammar_kit_plugin_version: "2020.2.1"
117-
since_build: "211"
118-
until_build: "211.*"
98+
- idea_version: "IU-2021.2.2"
99+
java_version: "11"
100+
php_plugin_version: "212.5284.49"
101+
psi_viewer_plugin_version: "212-SNAPSHOT"
102+
grammar_kit_plugin_version: "2021.1.3"
103+
since_build: "212"
104+
until_build: "212.*"
119105

120106
outputs:
121107
cms-name: ${{ steps.properties.outputs.cms-name }}
@@ -223,7 +209,7 @@ jobs:
223209
- name: Setup Java
224210
uses: actions/setup-java@v1
225211
with:
226-
java-version: 1.8
212+
java-version: 11
227213

228214
# Check out current repository
229215
- name: Fetch Sources
@@ -308,8 +294,7 @@ jobs:
308294
strategy:
309295
matrix:
310296
include:
311-
- since_build: "203"
312-
- since_build: "211"
297+
- since_build: "212"
313298

314299
steps:
315300

.github/workflows/release.yml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,13 @@ jobs:
2424
strategy:
2525
matrix:
2626
include:
27-
- idea_version: "IU-2020.3.3"
27+
- idea_version: "IU-2021.2.2"
2828
java_version: "1.11"
29-
php_plugin_version: "203.7148.15"
30-
psi_viewer_plugin_version: "203-SNAPSHOT"
31-
grammar_kit_plugin_version: "2020.2.1"
32-
since_build: "203"
33-
until_build: "203.*"
34-
- idea_version: "IU-2021.1"
35-
java_version: "1.11"
36-
php_plugin_version: "211.6693.120"
37-
psi_viewer_plugin_version: "211-SNAPSHOT"
38-
grammar_kit_plugin_version: "2020.2.1"
39-
since_build: "211"
40-
until_build: "211.*"
29+
php_plugin_version: "212.5284.49"
30+
psi_viewer_plugin_version: "212-SNAPSHOT"
31+
grammar_kit_plugin_version: "2021.1.3"
32+
since_build: "212"
33+
until_build: "212.*"
4134
outputs:
4235
prefixed-version: ${{ steps.properties.outputs.prefixed-version }}
4336

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
### Changed
77
- change main target for changelog patching to master
88
- use nightly channel when publishing Fluid or TypoScript plugins
9+
- upgrade gradle-intellij plugin to 1.1.6
910

1011
### Deprecated
1112

1213
### Removed
14+
- only support 2021.2.2
15+
- remove MissingTableInspectionTest as it's not compatible
1316

1417
### Fixed
1518

build.gradle

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
22

33
plugins {
4-
id "org.jetbrains.intellij" version "0.7.2" apply false
4+
id "org.jetbrains.intellij" version "1.1.6" apply false
55
id "org.jetbrains.grammarkit" version "${grammarKitPluginVersion}" apply false
66
id 'org.jetbrains.changelog' version '1.1.1'
77
}
@@ -30,11 +30,12 @@ subprojects {
3030
apply plugin: 'idea'
3131
apply plugin: 'org.jetbrains.intellij'
3232
apply plugin: 'java'
33-
apply plugin: "org.jetbrains.grammarkit"
33+
apply plugin: 'org.jetbrains.grammarkit'
3434

3535
repositories {
3636
mavenCentral()
3737
jcenter()
38+
maven { url 'https://jitpack.io' }
3839
}
3940

4041
changelog {
@@ -48,8 +49,8 @@ subprojects {
4849
}
4950

5051
intellij {
51-
version ideaVersion
52-
updateSinceUntilBuild true
52+
version.set(ideaVersion)
53+
updateSinceUntilBuild.set(true)
5354

5455
tasks {
5556
"buildSearchableOptions" {
@@ -60,29 +61,29 @@ subprojects {
6061

6162
patchPluginXml {
6263
if (customSinceBuild) {
63-
sinceBuild customSinceBuild
64+
sinceBuild.set(customSinceBuild)
6465
}
6566
if (customUntilBuild) {
66-
untilBuild customUntilBuild
67+
untilBuild.set(customUntilBuild)
6768
}
6869

69-
changeNotes changelog.getUnreleased().toHTML()
70-
pluginDescription htmlFixer("${project.projectDir}/src/main/resources/META-INF/description.html")
70+
changeNotes.set(provider { changelog.getLatest().toHTML() })
71+
pluginDescription.set(htmlFixer("${project.projectDir}/src/main/resources/META-INF/description.html"))
7172
}
7273

7374
grammarKit {
7475
jflexRelease = jFlexRelease
7576
}
7677

7778
runPluginVerifier {
78-
ideVersions pluginVerifierIdeVersions
79+
ideVersions.set(pluginVerifierIdeVersions.split(',').toList())
7980
}
8081

8182
test.testLogging.exceptionFormat = TestExceptionFormat.FULL
8283
}
8384

8485
wrapper {
85-
gradleVersion '6.2'
86+
gradleVersion '7.2'
8687
}
8788

8889
test.testLogging.exceptionFormat = TestExceptionFormat.FULL

gradle.properties

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,26 @@ pluginNameFluid = TYPO3 Fluid Support
55
pluginNameTypoScript = TYPO3 TypoScript Support
66
pluginVersion = 0.7.1
77

8-
javaVersion = 1.8
9-
javaTargetVersion = 1.8
8+
javaVersion = 1.11
9+
javaTargetVersion = 1.11
1010

1111
jFlexRelease = 1.7.0-1
1212

13-
pluginVerifierIdeVersions = 2020.3.3, 2021.1
13+
pluginVerifierIdeVersions = 2021.2
1414

15-
grammarKitPluginVersion = 2020.2.1
16-
ideaVersion = IU-2021.1
17-
phpPluginVersion = 211.6693.120
18-
psiViewerPluginVersion = 211-SNAPSHOT
19-
customSinceBuild=211
20-
customUntilBuild=211.*
15+
grammarKitPluginVersion = 2021.1.3
16+
ideaVersion = IU-2021.2.2
17+
phpPluginVersion = 212.5284.49
18+
psiViewerPluginVersion = 212-SNAPSHOT
19+
customSinceBuild=212
20+
customUntilBuild=212.*
21+
22+
#grammarKitPluginVersion = 2020.2.1
23+
#ideaVersion = IU-2021.1
24+
#phpPluginVersion = 211.6693.120
25+
#psiViewerPluginVersion = 211-SNAPSHOT
26+
#customSinceBuild=211
27+
#customUntilBuild=211.*
2128

2229
#grammarKitPluginVersion = 2020.2.1
2330
#ideaVersion = IU-2020.3.3

gradle/wrapper/gradle-wrapper.jar

333 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)