fix: 컴파일 타임아웃 60초 → 120초 상향 (#18)#19
Merged
Merged
Conversation
느린 Windows CI 러너(콜드 캐시 + MSVC 링커)에서 rustc -O 컴파일이 60초를 간헐적으로 초과해 테스트가 허위 '시간 초과'로 실패함. 저사양 사용자 PC에서도 같은 조건이면 재현 가능한 문제. 타임아웃은 상한일 뿐이라 정상 컴파일 속도에는 영향 없음.
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.
Fixes #18
문제
CodeRunnerTest > run Rust programmers wrapper with vec argument가 Windows CI에서 간헐 실패. PR #15에서 두 번 연속 재현됐고, 테스트 리포트 확인 결과 원인은:a714575에서 도입한 60초 컴파일 타임아웃이 느린 Windows 러너(콜드 캐시 + MSVC 링커 + Defender 스캔)에서는 부족함. 러너 이미지는 통과한 잡과 동일(windows-2025-vs2026)했고 러너 속도 편차로 경계선에 걸리는 것.
변경
COMPILE_TIMEOUT_SECONDS60 → 120. 상한일 뿐이라 정상적인 컴파일 속도에는 영향이 없고, 진짜로 멈춘 경우에만 오류 표시까지의 대기가 길어짐. CI뿐 아니라 저사양 사용자 PC의 첫 Rust 컴파일 허위 실패도 함께 예방.