Skip to content

Commit 1eaa867

Browse files
author
SMA/유정민
committed
[deploy] gradle 캐시 무시
1 parent cf30d77 commit 1eaa867

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
5252
#test를 제외한 프로젝트 빌드
5353
- name: Build With Gradle
54-
run: ./gradlew build -x test
54+
run: ./gradlew clean build -x test --no-build-cache
5555

5656
- name: Set up Docker Build
5757
uses: docker/setup-buildx-action@v2

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,10 @@ jobs:
7373

7474
# 테스트를 제외한 프로젝트 빌드
7575
- name: Build With Gradle
76-
run: ./gradlew build -x test
76+
run: ./gradlew clean build -x test --no-build-cache
7777

78-
# 테스트 실행
7978
- name: Build With Test
80-
run: ./gradlew test
79+
run: ./gradlew test --no-build-cach
8180

8281
# 테스트 결과 파일 생성
8382
- name: Publish Unit Test Results

0 commit comments

Comments
 (0)