perfin/.github/workflows/run-tests.yaml

50 lines
1.2 KiB
YAML
Raw Normal View History

2024-01-02 01:08:26 +00:00
name: Run Tests
on:
push:
branches:
2024-01-02 01:22:05 +00:00
- "*"
2024-01-02 02:11:54 +00:00
tags:
- "v*"
2024-01-02 01:08:26 +00:00
jobs:
maven-tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
2024-01-02 01:08:26 +00:00
steps:
- name: Checkout Repository
2024-01-02 01:27:49 +00:00
uses: actions/checkout@v4
2024-01-02 01:08:26 +00:00
- name: Setup JDK 21
2024-01-02 01:27:49 +00:00
uses: actions/setup-java@v4
2024-01-02 01:08:26 +00:00
with:
java-version: 21
distribution: temurin
cache: maven
- name: Check versions
run: |
java -version
javac -version
./mvnw -version
2024-01-02 01:31:50 +00:00
2024-01-02 01:08:26 +00:00
- name: Test with Maven
run: ./mvnw -B verify --file pom.xml
2024-01-02 01:51:37 +00:00
- name: Build Linux DEB Package for Release
if: ${{ startsWith(github.ref, 'refs/tags/') && runner.os == 'Linux' }}
2024-01-02 02:09:37 +00:00
run: ./scripts/package-linux-deb.sh
- name: Build Windows MSI Package for Release
if: ${{ startsWith(github.ref, 'refs/tags/') && runner.os == 'Windows' }}
run: powershell.exe -File scripts\package-windows-msi.ps1
2024-01-02 02:09:37 +00:00
- name: Create Release
2024-01-02 02:17:11 +00:00
if: ${{ startsWith(github.ref, 'refs/tags/') }}
2024-01-02 02:09:37 +00:00
uses: softprops/action-gh-release@v1
with:
fail_on_unmatched_files: true
2024-01-02 02:09:37 +00:00
files: |
*.deb
*.msi