Skip to content

Commit

Permalink
Run maven quietly
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogasp committed Jun 6, 2024
1 parent b5bacf4 commit 22a067e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
mysql -uroot -proot -e "CREATE DATABASE iam CHARACTER SET latin1 COLLATE latin1_swedish_ci;"
mysql -uroot -proot -e "GRANT ALL ON *.* TO 'iam'@'%';"
mysql -uroot -proot -e "FLUSH PRIVILEGES;"
mvn -Dspring.profiles.active=mysql-test package install
mvn -Dspring.profiles.active=mysql-test -q package install
- name: Copy artifacts to docker dir
run: |
cp iam-login-service/target/iam-login-service.war iam-login-service/docker
cp iam-test-client/target/iam-test-client.jar iam-test-client/docker
- name: Generate buildpacks
run: mvn -DskipTests -U -B spring-boot:build-image
run: mvn -DskipTests -U -B -q spring-boot:build-image

- name: Setup QEMU
uses: docker/setup-qemu-action@v3
Expand Down

0 comments on commit 22a067e

Please sign in to comment.