Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
🔗 연결된 이슈
📄 작업 내용
변경전

변경후

💻 주요 코드 설명
CI 최적화
기존 CI
기존
ci.yml파일은 캐시 없이 매번 모든 의존성을 새로 설치하는 구조였습니다주요 병목점
1. 캐시 부재: 매번 동일한 의존성을 새로 다운로드
2. 순차 실행: 병렬 가능한 작업을 순서대로 실행
bundle install→brew install→mise install순차 대기3. 환경 최적화 부재: 불필요한 작업들 실행
TO-BE
수정한
ci.yml핵심 개선사항
1. 캐시 도입으로 기존 다운받은 의존성들 다시 다운 X
vendor/bundle: Ruby gems 캐시~/.local/share/mise: mise tools 캐시Tuist/Dependencies: Tuist SPM 의존성 캐시2. 병렬 처리
3. timeout 사용
timeout-minutes: 30: 무한 대기 방지4. 환경 최적화: 불필요한 작업 제거
HOMEBREW_NO_AUTO_UPDATE: 1: 자동 업데이트 비활성화BUNDLE_JOBS: 4: Bundle 병렬 설치 활성화👀 기타 더 이야기해볼 점
기존 코드에서 Test코드를 사용해서 해당 테스트가 우선으로 실행되는 방식으로 도전해보려 햇는데 이 방식은 테스트 커버리지가 올라와야 의미가 있을것 같아서 보류했습니다. 그때까지 킵고잉~
✔️ CI Completed
✔️ CI Completed