-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (38 loc) · 1.17 KB
/
mps-compatibility.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: MPS compatibility
on:
push:
branches:
- 'main'
pull_request: {}
# allow manual execution just in case
workflow_dispatch:
jobs:
build-mps-components:
runs-on: ubuntu-latest
strategy:
matrix:
version:
# Testing with the first and last version of the supported range should be enough. Breaking changes usually stay there
# after being introduced. It's not expected that an incompatibility only exists in some intermediate version and then
# becomes compatible again.
# - "2020.3.6" VersionFixer was replaced by ModuleDependencyVersions in 2021.1 (used by model-sync-plugin)
- "2021.1.4"
# - "2021.2.6"
# - "2021.3.3"
# - "2022.2"
# - "2022.3"
- "2023.2"
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
- name: Build with ${{ matrix.version }}
run: >-
./gradlew --build-cache
mpsCompatibility
-Pmps.version=${{ matrix.version }}