Merge pull request #178 from MortronMeymo/support-file-urls #715
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 uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# GitHub recommends pinning actions to a commit SHA. | |
# To get a newer version, you will need to update the SHA. | |
# You can also reference a tag or branch, but the action may change without warning. | |
name: ci | |
on: [push] | |
jobs: | |
build_linux: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
matrix: | |
java: ['11', '17'] | |
name: Linux Java ${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: jdk ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
- name: gradle wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: gradle caching | |
uses: gradle/gradle-build-action@v2 | |
- run: sudo apt-get install xvfb | |
- run: git fetch origin main | |
- run: | | |
Xvfb :99 & | |
export DISPLAY=:99 | |
./gradlew build | |
- name: cleanup xvfb pidx | |
uses: bcomnes/cleanup-xvfb@v1 | |
- name: junit result | |
uses: mikepenz/action-junit-report@v3 | |
if: always() # always run even if the previous step fails | |
with: | |
check_name: Linux Java ${{ matrix.java }} JUnit | |
report_paths: '*/build/test-results/test/TEST-*.xml' | |
build_win: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
java: ['17'] | |
name: Win Java ${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: jdk ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
- name: gradle wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: gradle caching | |
uses: gradle/gradle-build-action@v2 | |
- run: git fetch origin main | |
- run: ./gradlew build | |
- name: junit result | |
uses: mikepenz/action-junit-report@v3.6.1 | |
if: always() # always run even if the previous step fails | |
with: | |
check_name: Windows Java ${{ matrix.java }} JUnit | |
report_paths: '*/build/test-results/test/TEST-*.xml' |