Bump io.fabric8:docker-maven-plugin from 0.40.1 to 0.43.2 #249
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: Build and Test | |
on: | |
push: | |
branches: [master, dev] | |
paths-ignore: | |
- '**.md' | |
- '.github/ISSUE_TEMPLATE' | |
- '.gitignore' | |
- 'provisioning' | |
- '.sonarcloud.properties' | |
- 'LICENSE' | |
- 'Vagrantfile' | |
pull_request: | |
branches: [master, dev] | |
paths-ignore: | |
- '**.md' | |
- '.github/ISSUE_TEMPLATE' | |
- '.gitignore' | |
- 'provisioning' | |
- '.sonarcloud.properties' | |
- 'LICENSE' | |
- 'Vagrantfile' | |
jobs: | |
lint-java: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: axel-op/googlejavaformat-action@fe78db8a90171b6a836449f8d0e982d5d71e5c5a #v3.6.0 | |
with: | |
args: "--set-exit-if-changed" | |
build: | |
needs: lint-java | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Build Maven with Docker Profile | |
run: mvn clean install -Pdocker -DskipTests -B | |
- name: Docker Compose Build | |
run: docker-compose build | |
unit-tests: | |
needs: [lint-java, build] | |
runs-on: ubuntu-latest | |
services: | |
mysql: | |
image: mysql:5.7 | |
env: | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_DATABASE: core | |
ports: | |
- '8888:3306' | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Start MYSQL Server | |
run: sudo /etc/init.d/mysql start | |
- name: Modify MySQL Connection Variables | |
run: | | |
sed -i "s/'@'localhost'/'@'%'/g" ${GITHUB_WORKSPACE}/src/main/resources/database/moduleSchemas.sql | |
sed -i 's/TEST_MYSQL_PORT=3306/TEST_MYSQL_PORT=8888/g' ${GITHUB_WORKSPACE}/.env | |
- name: Run Unit Tests | |
run: mvn test -B -e -X | |
integration-tests: | |
needs: [lint-java, build] | |
runs-on: ubuntu-latest | |
services: | |
mysql: | |
image: mysql:5.7 | |
env: | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_DATABASE: core | |
ports: | |
- '8888:3306' | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Start MYSQL Server | |
run: sudo /etc/init.d/mysql start | |
- name: Modify MySQL Connection Variables | |
run: | | |
sed -i "s/'@'localhost'/'@'%'/g" ${GITHUB_WORKSPACE}/src/main/resources/database/moduleSchemas.sql | |
sed -i 's/TEST_MYSQL_PORT=3306/TEST_MYSQL_PORT=8888/g' ${GITHUB_WORKSPACE}/.env | |
- name: Prepare Intergration Tests | |
run: | | |
sudo apt-get -y install libargon2-0 | |
mvn -Pdocker validate | |
- name: Run Intergration Tests | |
run: | | |
mvn verify -DskipUTs=true -DmongoDocker -B |