add logs to validateHash #85
Workflow file for this run
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: Integration Tests | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
docker-build: | |
name: Build docker images | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# In this step, this action saves a list of existing images, | |
# the cache is created without them in the post run. | |
# It also restores the cache if it exists. | |
- name: Pull the previously cached images. | |
uses: satackey/[email protected] | |
# Ignore the failure of a step and avoid terminating the job. | |
continue-on-error: true | |
with: | |
key: ${{ runner.os }}-docker-image-${{ hashFiles('**/Dockerfile*', '**/docker-compose.yml') }} | |
restore-keys: | | |
${{ runner.os }}-docker-image- | |
# Build Docker and Run Tests | |
- name: Build docker image | |
run: | | |
docker-compose build | |
- name: Standup Docker Pods | |
env: | |
MVN_PROFILE: demo | |
run: | | |
docker-compose up -d | |
- name: Cache local Maven repository | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Running Integration Tests | |
env: | |
DOCKERIZE_VERSION: v0.6.1 | |
run: | | |
# We need to test if api pod and service is running before we can proceed. Using dockerize to proceed only after port 8080 can be reached. | |
wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz | |
tar -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz | |
./dockerize -wait http://127.0.0.1:8080/actuator/health -timeout 120s mvn verify -f src/pci-gateway-test-runner/pom.xml |