-
Notifications
You must be signed in to change notification settings - Fork 7
52 lines (43 loc) · 1.43 KB
/
build_and_test.yml
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
44
45
46
47
48
49
50
51
52
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