-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: workflow 복구 * test: dev 워크플로우 테스트 * test: 잘못된 yaml 형식 수정 * test: 설정 서브모듈 추가 * fix: eof 추가 * feat: 이미지 업로드 경로 업데이트
- Loading branch information
Showing
5 changed files
with
197 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: backend-push | ||
|
||
on: | ||
push: | ||
branches: [ "be-dev", "feature/#704" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
working-directory: ./server | ||
|
||
permissions: | ||
contents: read | ||
|
||
steps: | ||
- name: CheckOut | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{secrets.CONFIG_SUBMODULE_TOKEN}} | ||
submodules: true | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Test with Gradle Wrapper | ||
run: ./gradlew clean build | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Set up Docker BuildX | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Build and push | ||
run: | | ||
docker buildx build --platform linux/arm64 -t \ | ||
${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_DEV }} --push . | ||
deploy: | ||
needs: build | ||
runs-on: [ self-hosted, backend-dev ] | ||
steps: | ||
- name: Docker remove | ||
run: | | ||
CONTAINER_IDS=$(sudo docker ps -qa) | ||
if [ -n "$CONTAINER_IDS" ]; then | ||
sudo docker rm -f $CONTAINER_IDS | ||
else | ||
echo "No running containers found." | ||
fi | ||
- name: Docker Image pull | ||
run: sudo docker pull ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_DEV }} | ||
|
||
- name: Docker run | ||
run: sudo docker run -d -p 8080:8080 -e SPRING_PROFILES_ACTIVE=dev -v log-volume:/app/logs --name haengdong-backend ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_DEV }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: backend-push | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
paths: | ||
- 'server/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
working-directory: ./server | ||
|
||
permissions: | ||
contents: read | ||
|
||
steps: | ||
- name: CheckOut | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{secrets.CONFIG_SUBMODULE_TOKEN}} | ||
submodules: true | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Test with Gradle Wrapper | ||
run: ./gradlew clean build | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Set up Docker BuildX | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Build and push | ||
run: | | ||
docker buildx build --platform linux/arm64 -t \ | ||
${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_PROD }} --push . | ||
deploy: | ||
needs: build | ||
strategy: | ||
matrix: | ||
runner: [ prod-1, prod-2 ] | ||
runs-on: [ self-hosted, '${{ matrix.runner }}' ] | ||
steps: | ||
- name: Docker remove | ||
run: | | ||
CONTAINER_IDS=$(sudo docker ps -qa) | ||
if [ -n "$CONTAINER_IDS" ]; then | ||
sudo docker rm -f $CONTAINER_IDS | ||
else | ||
echo "No running containers found." | ||
fi | ||
- name: Docker Image pull | ||
run: sudo docker pull ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_PROD }} | ||
|
||
- name: Docker run | ||
run: sudo docker run -d -p 8080:8080 -e SPRING_PROFILES_ACTIVE=prod -v log-volume:/app/logs --name haengdong-backend ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_PROD }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: backend-pull-request | ||
|
||
on: | ||
pull_request: | ||
branches: [ "main", "be-dev" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: [ ubuntu-latest ] | ||
|
||
defaults: | ||
run: | ||
working-directory: ./server | ||
|
||
steps: | ||
- name: CheckOut | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Test with Gradle Wrapper | ||
run: ./gradlew clean build | ||
|
||
- name: publish unit test results | ||
uses: EnricoMi/publish-unit-test-result-action@v2 | ||
if: always() | ||
with: | ||
files: server/build/test-results/test/TEST-*.xml | ||
|
||
- name: add comments to a pull request | ||
uses: mikepenz/action-junit-report@v3 | ||
if: always() | ||
with: | ||
report_paths: server/build/test-results/test/TEST-*.xml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "server/src/main/resources/config"] | ||
path = server/src/main/resources/config | ||
url = https://github.com/woowacourse-teams/2024-haeng-dong-config |