Skip to content

Commit

Permalink
aaa download make goal
Browse files Browse the repository at this point in the history
  • Loading branch information
nkonev committed Nov 16, 2023
1 parent 8f95b1a commit d07e66f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
sleep 15 && ${HOME}/bin/wait-for-it.sh -t 30 127.0.0.1:8484 -- echo 'keycloak is up'
- name: Build and test with Maven
run: |
(cd aaa; make check-env clean package test)
(cd aaa; make check-env clean download package test)
- name: Build docker image and deploy
if: github.ref == 'refs/heads/master'
run: |
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
${HOME}/bin/wait-for-it.sh -t 30 127.0.0.1:8081 -- echo 'traefik is up'
- name: Build microservices
run: |
(cd aaa; make check-env clean package-java)
(cd aaa; make check-env clean download package-java)
(cd frontend; make check-env clean download package)
(cd chat; make check-env clean download generate package-go)
(cd event; make check-env clean download generate package-go)
Expand Down
2 changes: 1 addition & 1 deletion aaa/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: check-env download package-docker test push-docker clean

download:
echo "Nothing to download"
./mvnw dependency:resolve

check-env:
docker version && java -version
Expand Down

0 comments on commit d07e66f

Please sign in to comment.