Update docker dependencies #1009
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 java tests | |
on: | |
push: | |
pull_request: | |
branches: [main] | |
jobs: | |
run-tests: | |
name: Run java tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Start e2e env | |
uses: HSLdevcom/jore4-tools/github-actions/setup-e2e-environment@setup-e2e-environment-v1 | |
with: | |
custom_docker_compose: ./docker/docker-compose.custom.yml | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "17" | |
java-package: jdk | |
architecture: x64 | |
distribution: temurin | |
- name: Cache Maven packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Verify whether test mssql db is up | |
uses: HSLdevcom/jore4-tools/github-actions/healthcheck@healthcheck-v1 | |
env: | |
SA_PASSWORD: "P@ssw0rd" | |
with: | |
command: | |
'sqlcmd -S 127.0.0.1 -U sa -P "$SA_PASSWORD" -d master -Q "SELECT | |
''OK'';"' | |
# it may take a while for the database to start | |
retries: 50 | |
- name: Verify whether test postgresql db is up | |
uses: HSLdevcom/jore4-tools/github-actions/healthcheck@healthcheck-v1 | |
with: | |
# testing whether tcp port 17000 responds | |
command: "pg_isready -h localhost -p 17000" | |
- name: Verify whether jore4 db is up | |
uses: HSLdevcom/jore4-tools/github-actions/healthcheck@healthcheck-v1 | |
with: | |
# testing whether tcp port 6432 responds | |
command: "pg_isready -h localhost -p 6432" | |
- name: Verify that Hasura migrations have been run | |
uses: HSLdevcom/jore4-tools/github-actions/healthcheck@healthcheck-v1 | |
with: | |
command: | |
"curl --fail http://localhost:3201/healthz --output /dev/null | |
--silent" | |
# It may take a while before migrations are run | |
retries: 100 | |
- name: Run tests and try building a package | |
run: mvn --batch-mode clean verify -Pci |