Merge pull request #825 from drik98/feature/allow-nullish-elements-in… #2131
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
- "2021.1" | |
- "2021.2" | |
- "2021.3" | |
- "2022.2" | |
- "2022.3" | |
- "2023.2" | |
- "2023.3" | |
- "2024.1" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Set up Gradle | |
uses: gradle/gradle-build-action@v3 | |
- name: Build with ${{ matrix.version }} | |
run: >- | |
./gradlew --build-cache | |
:bulk-model-sync-mps:build | |
:metamodel-export:build | |
:mps-model-adapters:build | |
:mps-model-adapters-plugin:build | |
:mps-model-server-plugin:build | |
-Pmps.version.major=${{ matrix.version }} |