OC-31 support compilestatic #164
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: B Compatibility tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 8.0 | |
distribution: temurin | |
cache: maven | |
- name: Cache Eclipse binaries | |
id: cache-eclipse | |
uses: actions/cache@v4 | |
with: | |
path: clover-eclipse-libs/target/download | |
key: ${{ runner.os }}-eclipse-${{ hashFiles('clover-eclipse-libs/pom.xml') }} | |
- name: Cache IDEA binaries | |
id: cache-idea | |
uses: actions/cache@v4 | |
with: | |
path: clover-idea-libs/target/download | |
key: ${{ runner.os }}-idea-${{ hashFiles('clover-idea-libs/pom.xml') }} | |
- name: Prepare third party libraries | |
run: | | |
mvn --batch-mode install -f clover-core-libs/jarjar/pom.xml | |
mvn --batch-mode install -Pworkspace-setup -f clover-core-libs/pom.xml | |
mvn --batch-mode install -Pworkspace-setup -f clover-eclipse-libs/pom.xml | |
mvn --batch-mode install -Pworkspace-setup -f clover-idea-libs/pom.xml | |
- name: Download KTreemap fork | |
run: | | |
wget https://packages.atlassian.com/mvn/maven-atlassian-external/net/sf/jtreemap/ktreemap/1.1.0-atlassian-01/ktreemap-1.1.0-atlassian-01.jar | |
wget https://packages.atlassian.com/mvn/maven-atlassian-external/net/sf/jtreemap/ktreemap/1.1.0-atlassian-01/ktreemap-1.1.0-atlassian-01.pom | |
mvn --batch-mode install:install-file -Dfile=ktreemap-1.1.0-atlassian-01.jar -DpomFile=ktreemap-1.1.0-atlassian-01.pom | |
- name: Compile and pack all modules | |
run: | | |
mvn --batch-mode install -DskipTests=true | |
- name: Run matrix tests for clover-groovy and tests-functional | |
run: | | |
mvn --batch-mode verify -pl clover-groovy,tests-functional -Pcompatibility |