Skip to content

Added patch to manage token as char array instead of String #9

Added patch to manage token as char array instead of String

Added patch to manage token as char array instead of String #9

Workflow file for this run

name: CI
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
jobs:
build:
name: Build on JDK ${{ matrix.java }}, ${{ matrix.os }} and Vault ${{ matrix.vault }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
java:
- 11
vault:
- 1.8.12
- 1.9.10
- 1.10.11
- 1.11.12
- 1.12.11
- 1.13.8
- 1.14.4
- 1.15.6
- 1.16.3
- 1.17.6
- 1.18.5
- 1.19.0
- 1.19.1
- 1.19.2
- 1.19.3
- 1.19.4
- 1.19.5
- 1.20.0
- 1.20.1
- 1.20.2
- 1.20.3
- 1.20.4
- 1.21.0
- 1.21.1
- latest
os:
- ubuntu-latest
# TODO: We disable Windows because testcontainers doesn't support runs in containers
# (see https://github.com/testcontainers/testcontainers-java/pull/1780)
# - windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: temurin
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify
env:
VAULT_VERSION: ${{ matrix.vault }}
- uses: actions/upload-artifact@v4 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
overwrite: true
name: test-results-${{ matrix.os }}-${{ matrix.vault }}
path: build/test-results/