ci: also run tests on windows and macos

This commit is contained in:
Gauthier Roebroeck 2025-03-11 13:11:54 +08:00
parent 465467c50c
commit d29902012d

View File

@ -12,8 +12,12 @@ on:
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ${{ matrix.os }}
name: Test server strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
fail-fast: false
name: Test server - ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Setup Java 17 - name: Setup Java 17
@ -33,18 +37,18 @@ jobs:
if: always() if: always()
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: test-results name: test-results-${{ matrix.os }}
path: komga/build/test-results/ path: komga/build/test-results/
- name: Upload Unit Test Reports - name: Upload Unit Test Reports
if: always() if: always()
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: test-reports name: test-reports-${{ matrix.os }}
path: komga/build/reports/tests/ path: komga/build/reports/tests/
- name: Conveyor - compute JDK module list - name: Conveyor - compute JDK module list
if: github.event_name == 'push' && github.repository_owner == 'gotson' if: github.event_name == 'push' && github.repository_owner == 'gotson' && contains(matrix.os, 'ubuntu')
uses: hydraulic-software/conveyor/actions/build@v17.0 uses: hydraulic-software/conveyor/actions/build@v17.0
with: with:
command: -f conveyor.detect.conf -Kapp.machines=mac.aarch64 make processed-jars command: -f conveyor.detect.conf -Kapp.machines=mac.aarch64 make processed-jars
@ -53,7 +57,7 @@ jobs:
- name: Compare JDK required modules - name: Compare JDK required modules
id: conveyor_compare id: conveyor_compare
if: github.event_name == 'push' && github.repository_owner == 'gotson' if: github.event_name == 'push' && github.repository_owner == 'gotson' && contains(matrix.os, 'ubuntu')
run: diff --unified ./komga-tray/conveyor/required-jdk-modules.txt ./output/required-jdk-modules.txt run: diff --unified ./komga-tray/conveyor/required-jdk-modules.txt ./output/required-jdk-modules.txt
- name: Upload JDK required modules - name: Upload JDK required modules