feat: Dockerfile 및 ga ci workflow 작성 #143
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
💡 다음 이슈를 해결했어요.
github action ci workflow를 위와 같이 작성하였습니다.
과정을 간략하게 설명하면 다음과 같습니다.
우선 아래 workflow는 PR을 올릴 때 trigger 됩니다.
1.
cfg
2.
build and upload artifact
jar
형식의 artifact를 build하고 임시로 upload합니다.(github action에서 제공하는 기능)3.
trigger-provision-test-infra
4.
unit-test
,integration-test
,e2e-test
5.
containerization
,trigger-destroy-test-infra
테스트 성공 후 단계에서 이전에 upload 한 artifact를 download 하여 docker image를 build 및 dockerhub에 push 합니다.
테스트를 마쳤으므로 test infra도 destroy 요청을 infra repo에 보냅니다.
여기까지가 CI workflow 이고,
이후 docker image가 push 되면 infra repo에서 provision을 수동으로 trigger 하면 CD 과정이 진행됩니다.
아래는 개인 레포에 만든 Github Action 환경 변수, 시크릿입니다.
ludo repo에도 추후 dockerhub 계정을 만들어서 반영해야 합니다.
✅ 셀프 체크리스트