We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 739d574 + 34b4d80 commit 63ce38dCopy full SHA for 63ce38d
.github/workflows/dev-server-cicd.yml
@@ -8,6 +8,12 @@ on:
8
jobs:
9
backend-CI:
10
runs-on: ubuntu-latest
11
+
12
+ # Testcontainers가 CI 환경에서 Docker를 잘 찾도록 환경 변수 추가
13
+ env:
14
+ TESTCONTAINERS_RYUK_DISABLED: true
15
+ TESTCONTAINERS_CHECKS_DISABLE: true
16
17
steps:
18
- name: Checkout
19
uses: actions/checkout@v4
@@ -51,10 +57,12 @@ jobs:
51
57
shell: bash
52
58
53
59
# 3. 모든 설정이 끝난 후 빌드 실행
60
+ # 권한 부여 및 --no-daemon 옵션 추가 (메모리 절약)
54
61
- name: Build Gradle
55
62
run: |
56
63
chmod +x gradlew
- ./gradlew build -Dspring.profiles.active=dev-docs
64
+ # ./gradlew build -Dspring.profiles.active=dev-docs
65
+ ./gradlew clean build -Dspring.profiles.active=dev-docs --no-daemon
66
67
68
- name: Build and push image to Amazon ECR
0 commit comments