fix: c++ 컴파일 캐시 테스트 #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 백엔드 @app/media CD | |
on: | |
push: | |
branches: [main, release, fix/#347/media-build] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: ✅ 체크아웃 | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: ☑️ pnpm 버전 설정 | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- name: ☑️ 노드 버전 설정 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: ⬇️ 의존성 설치 | |
run: pnpm install --frozen-lockfile | |
- name: 📦 프로젝트 빌드 | |
run: pnpm build:media | |
- name: 빌드 테스트 | |
run: echo "test11" | |
build: | |
runs-on: ubuntu-latest | |
needs: ci | |
steps: | |
- name: ✅ 체크아웃 | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: .env 파일 생성 | |
run: | | |
jq -r 'to_entries|map("\(.key)=\(.value|tostring)")|.[]' <<< "$SECRETS_CONTEXT" > .env | |
mv .env apps/media/.env | |
env: | |
SECRETS_CONTEXT: ${{ toJson(secrets) }} | |
# - name: 🐳 Docker 로그인 | |
# uses: docker/login-action@v3 | |
# with: | |
# registry: ${{secrets.DOCKER_REGISTRY_URL}} | |
# username: ${{secrets.DOCKER_REGISTRY_ACCESS_KEY}} | |
# password: ${{secrets.DOCKER_REGISTRY_SECRET_KEY}} | |
- name: 🐳 Docker 빌드 및 푸시 | |
run: | | |
echo "Starting Docker build..." | |
DOCKER_BUILDKIT=1 docker buildx build --progress=plain -f apps/media/Dockerfile . -t my-media-app | |
echo "Docker build completed." | |
- name: 🐳 Docker 실행 | |
run: | | |
echo "Starting Docker container..." | |
docker run -d -p 3002:3002 --name media-app my-media-app | |
echo "Docker container started." | |
- name: 🐳 Docker 상태 확인 | |
run: | | |
sleep 10 # 컨테이너가 시작될 시간을 주기 위한 대기 시간 | |
docker ps -a | |
docker logs media-app # 로그 확인 |