Skip to content

Prepare Jaybird 5.0.8 release #767

Prepare Jaybird 5.0.8 release

Prepare Jaybird 5.0.8 release #767

Workflow file for this run

name: run-tests
on: [push,pull_request]
permissions:
contents: read
jobs:
build:
strategy:
matrix:
java:
- version: 8
profile: java8
- version: 11
profile: java11
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: juarezr/firebirdsql-github-action@v2.0.1
with:
version: '5.0.2'
firebird_root_password: 'masterkey'
enable_legacy_client_auth: 'true'
firebird_conf: 'WireCrypt=Enabled'
- uses: actions/checkout@v4
- name: Set up Java ${{ matrix.java.version }}
uses: actions/setup-java@v4
with:
java-version: '${{ matrix.java.version }}'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@8379f6a1328ee0e06e2bb424dadb7b159856a326
with:
cache-read-only: ${{ github.ref != 'refs/heads/Branch_5_0' }}
- name: Build with Gradle
run: ./gradlew test -PbuildProfile=${{ matrix.java.profile }} -Ptest.dbondocker=true -Ptest.db.dir=/var/lib/firebird/data
- name: Store Report Artifact
uses: actions/upload-artifact@v4
if: always()
with:
name: report-artifacts-${{ matrix.java.profile }}
path: build/reports
compression-level: 9
retention-days: 7