Skip to content

Commit

Permalink
Update CI CD Scripts Exclude test
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Diger committed Mar 15, 2024
1 parent a68ef80 commit ec5fe79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/api-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
shell: bash

- name: 프로젝트 빌드
run: ./gradlew clean build
run: ./gradlew clean build -x test
shell: bash

- name: API 빌드 파일 복사
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crawler-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
shell: bash

- name: 프로젝트 빌드
run: ./gradlew clean build
run: ./gradlew clean build -x test
shell: bash

- name: Crawler 빌드 파일 복사
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
shell: bash

- name: 프로젝트 빌드
run: ./gradlew clean build
run: ./gradlew clean build -x test
shell: bash

- name: API 빌드 파일 복사
Expand Down

0 comments on commit ec5fe79

Please sign in to comment.