bump SDK version and add await to failing test (#19) #15
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: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
permissions: | |
actions: read | |
checks: write | |
contents: read | |
issues: read | |
packages: read | |
pull-requests: write | |
statuses: read | |
security-events: write | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ macos-latest, ubuntu-latest, windows-latest ] | |
include: | |
- os: macos-latest | |
FILE: openjfx-24+884_headless_mac-aarch64_bin-sdk | |
- os: ubuntu-latest | |
FILE: openjfx-24+881_headless_linux-x86_64_bin-sdk | |
- os: windows-latest | |
FILE: openjfx-24+885_headless_windows-x86_64_bin-sdk | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 22 | |
distribution: 'temurin' | |
- name: Download SDK (Linux/macOS) | |
if: runner.os != 'Windows' | |
run: | | |
wget -nv https://download2.gluonhq.com/openjfx/forks/johan/headless/${{ matrix.FILE }}.zip -O ${{ matrix.FILE }}.zip | |
unzip -q ${{ matrix.FILE }}.zip | |
echo "JAVAFX_HOME=${{ github.workspace }}/javafx-sdk-24" >> ${GITHUB_ENV} | |
- name: Download SDK (Windows) | |
if: runner.os == 'Windows' | |
run: | | |
Invoke-WebRequest https://download2.gluonhq.com/openjfx/forks/johan/headless/${{ matrix.FILE }}.zip -OutFile ${{ matrix.FILE }}.zip | |
Expand-Archive .\${{ matrix.FILE }}.zip -Force | |
Move-Item -Path .\${{ matrix.FILE }}\javafx-sdk-24 -Destination .\ | |
echo "JAVAFX_HOME=${{ github.workspace }}\javafx-sdk-24" >> $env:GITHUB_ENV | |
- name: Cache Gradle Resources | |
uses: actions/cache@v4 | |
with: | |
path: ~/.gradle | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Build (Linux/macOS) | |
if: runner.os != 'Windows' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
./gradlew -Dtestfx.headless=true versions check | |
- name: Build (Windows) | |
if: runner.os == 'Windows' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
.\gradlew -Dtestfx.headless=true versions check | |
shell: cmd | |
- name: Publish Test Results (Linux) | |
uses: EnricoMi/publish-unit-test-result-action/linux@v2 | |
if: runner.os == 'Linux' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
check_name: Unit Test Results (${{ runner.os }}) | |
report_individual_runs: true | |
check_run_annotations_branch: master | |
check_run_annotations: all tests, skipped tests | |
files: subprojects/**/build/test-results/**/*.xml | |
- name: Publish Test Results (macOS) | |
uses: EnricoMi/publish-unit-test-result-action/macos@v2 | |
if: runner.os == 'macOS' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
check_name: Unit Test Results (${{ runner.os }}) | |
report_individual_runs: true | |
check_run_annotations_branch: master | |
check_run_annotations: all tests, skipped tests | |
files: subprojects/**/build/test-results/**/*.xml | |
- name: Publish Test Results (Windows) | |
uses: EnricoMi/publish-unit-test-result-action/windows@v2 | |
if: runner.os == 'Windows' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
check_name: Unit Test Results (${{ runner.os }}) | |
report_individual_runs: true | |
check_run_annotations_branch: master | |
check_run_annotations: all tests, skipped tests | |
files: subprojects/**/build/test-results/**/*.xml | |
- name: Publish Snapshots | |
if: github.ref == 'refs/heads/master' && runner.os == 'Linux' | |
run: | | |
ver=$(./gradlew properties -q | grep "version:" | awk '{print $2}') | |
if [[ $ver == *"SNAPSHOT"* ]] | |
then | |
./gradlew publish -PgluonNexusDeployUsername=$NEXUS_USERNAME -PgluonNexusDeployPassword=$NEXUS_PASSWORD | |
fi | |
shell: bash | |
env: | |
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }} | |
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }} |