Update README.md #36
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
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Unit tests macos-latest | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Check gradle version | |
run: ./gradlew --version | |
- name: Prepare fixtures | |
run: ./src/liveTest/resources/scripts/create_symlinks | |
- name: Run unit and live tests | |
run: ./gradlew test liveTest -Dxenon.scheduler=local -Dxenon.filesystem=file -Dxenon.filesystem.location=/ -Dxenon.scheduler.location=$PWD -Dxenon.username=$USERNAME -Dxenon.filesystem.basedir=$PWD -Dxenon.filesystem.expected.workdir=/ -Dxenon.scheduler.workdir=$PWD -Dxenon.scheduler.supportsInteractive=1 -Dxenon.scheduler.isEmbedded=1 | |
- name: Create test reports | |
run: ./gradlew jacocoTestReport jacocoLiveTestReport | |
- name: Upload unit coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
env_vars: OS,JDK | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
files: ./build/reports/jacoco/test/jacocoTestReport.xml | |
flags: unit | |
name: codecov-umbrella | |
verbose: true | |
env: | |
OS: osx | |
JDK: openjdk11 | |
- name: Upload live coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
env_vars: OS,JDK | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
files: ./build/reports/jacoco/jacocoLiveTestReport/jacocoLiveTestReport.xml | |
flags: livelocal | |
name: codecov-umbrella | |
verbose: true | |
env: | |
OS: osx | |
JDK: openjdk11 | |
- name: Upload to sonarcube | |
run: ./gradlew sonarqube --info | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
OS: osx | |
JDK: openjdk11 | |