Merge branch 'main' into feature/injection-balance-constraint #44
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: CI | |
on: [ push ] | |
jobs: | |
build: | |
name: Build and test on ${{ matrix.os }} with ${{ matrix.jvm }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
jvm: [ java, graalvm ] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v1 | |
- name: Set up Java 17 | |
if: matrix.jvm == 'java' | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Setup GraalVM | |
if: matrix.jvm == 'graalvm' | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: '17.0.12' | |
distribution: 'graalvm' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build with Maven | |
if: matrix.os == 'ubuntu-latest' | |
run: mvn --batch-mode -Pjacoco install -DskipCucumberTests=true | |
- name: Build with Maven | |
if: matrix.os != 'ubuntu-latest' | |
run: mvn --batch-mode install -DskipCucumberTests=true | |
- name: Run SonarCloud analysis | |
if: matrix.os == 'ubuntu-latest' | |
run: > | |
mvn --batch-mode -DskipTests sonar:sonar | |
-Dsonar.host.url=https://sonarcloud.io | |
-Dsonar.organization=powsybl-ci-github | |
-Dsonar.projectKey=com.powsybl:open-rao | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
- name: Run cucumber tests | |
run: mvn test -pl tests |