Skip to content

Commit

Permalink
ci: run tests with all supported MPS versions
Browse files Browse the repository at this point in the history
  • Loading branch information
slisson committed Nov 6, 2023
1 parent 67c3288 commit 9dd98b0
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 37 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,30 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew build publishToMavenLocal -PciBuild=true

test-with-mps:
needs: assembleWholeProject
runs-on: ubuntu-latest

strategy:
matrix:
version:
- "2020.3.6"
- "2021.1.4"
- "2021.2.6"
- "2021.3.4"
- "2022.2.1"
- "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: cd build-tools-gradle-test && ./gradlew --build-cache build publishToMavenLocal -Pmps.version=${{ matrix.version }}
37 changes: 0 additions & 37 deletions .github/workflows/mps-compatibility.yaml

This file was deleted.

0 comments on commit 9dd98b0

Please sign in to comment.