#767 Change FBBlob.getBytes to return shorter array than requested at… #331
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: run-tests | |
on: [push,pull_request] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: juarezr/[email protected] | |
with: | |
version: 'v4.0' | |
isc_password: 'masterkey' | |
enable_legacy_client_auth: 'true' | |
- uses: actions/checkout@v3 | |
- name: Set up Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@8d49e559aae34d3e0eb16cde532684bc9702762b | |
- name: Build with Gradle | |
run: ./gradlew test -PbuildProfile=java11 -Ptest.dbondocker=true -Ptest.db.dir=/firebird/data | |
- name: Cleanup Gradle Cache | |
# Remove some files from the Gradle cache, so they aren't cached by GitHub Actions. | |
# Restoring these files from a GitHub Actions cache might cause problems for future builds. | |
run: | | |
rm -f ~/.gradle/caches/modules-2/modules-2.lock | |
rm -f ~/.gradle/caches/modules-2/gc.properties | |
rm -fr ~/.gradle/caches/*/plugin-resolution/ | |
find ~/.gradle/caches/ -name "*.lock" -type f -delete | |
- name: Store Report Artifact | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: report-artifacts | |
path: build/reports | |
retention-days: 7 |