Notice
Recent Posts
Recent Comments
Link
거의 알고리즘 일기장
circleci - Build Fails with "Too long with no output (exceeded 10m0s): context deadline exceeded" 본문
react-native
circleci - Build Fails with "Too long with no output (exceeded 10m0s): context deadline exceeded"
건우권 2022. 11. 11. 11:33
circle ci script안에 no_output_timout 옵션 변경할것
steps:
- run:
name: Run Tests
no_output_timeout: 30m //이거 바꾸셈 default: 10m
command: python -m unittest
근디 step run 자체가 잘못된 경우도 있을수 있으므로 Log를 잘보고 그냥 그 step이 오래걸려서 Output을 10분이상 내지 못하는 경우에만 사용할것. 안그러면 크레딧 녹음
반응형
'react-native' 카테고리의 다른 글
react native invoke tmap bridge (0) | 2022.11.14 |
---|---|
react native에서 URL object가 제대로 동작하지 않는 경우 (0) | 2022.11.13 |
tmap sdk invokeRoute, tmap 존재확인 함수가 안먹힐때 (0) | 2022.11.09 |
fastlane으로 testflight upload시에 깨질때 (An exception has occurred: issuerId is required) (0) | 2022.11.09 |
android에서만 network request failed 에러가 나는 경우 with react native (0) | 2022.06.29 |
Comments