본문 바로가기
반응형

Jenkins3

[Jenkins] Git 빌드 오류 - Out of memory, malloc failed 원인 최초 빌드(clone), 또는 Branch 변경 시 발생한다. 서버(원격 저장소)는 데이터를 전송하기 전에 메모리 상에서 데이터를 압축한다. 이 때, 서버의 물리적인 메모리가 부족할 경우 Out of memory, malloc failed 오류가 발생한다. 해결 방법 서버(원격 저장소)를 재부팅하거나 물리적인 메모리 용량을 늘린다. 로컬 저장소에서 원격 저장소로 파일 전송(push) 시 오류가 발생했다면 다음과 같이 처리한다. 로컬 저장소의 프로젝트 폴더/.git/config 파일에서 압축 관련 설정을 수정한다. https://stackoverflow.com/a/26464366 [pack] threads = 1 deltaCacheSize = 1024m packSizeLimit = 1024m wind.. 2018. 7. 23.
[Jenkins] Git - Timeout after 10 minutes 젠킨스에서 Job 생성 후 최초 빌드 시 다음과 같은 에러가 발생했다. ERROR: Timeout after 10 minutes > git config --local --remove-section credential # timeout=10 ERROR: Error fetching remote repo 'origin' hudson.plugins.git.GitException: Failed to fetch from http://repository url 원격 저장소에서 소스를 받아올 때 기본 timeout 값인 10분이 초과돼서 발생한 에러다. 다음과 같이 젠킨스 Job 구성에서 timeout 값을 늘리면 된다. 참고한 사이트: https://issues.jenkins-ci.org/browse/JENKINS-.. 2018. 3. 8.
[Jenkins] iOS 빌드 셋팅 오류 - ld : file not found 드디어 젠킨스(Jenkins)iOS 빌드 셋팅을 완료했다. 며칠동안 수없이 뜨는 오류를 하나하나 수정한 끝에 이뤄낸 쾌거다. 수많은 오류 중 해결하는 데에 가장 오래 걸린 오류와 해결법을 소개하겠다. Console Output에 남은 오류 메시지는 다음과 같다. 12345678910111213141516171819Ld build/Unity-iPhone.build/Release-iphoneos/Unity-iPhone\ Tests.build/Objects-normal/arm64/myprojects normal arm64 cd /Users/mobile_unit/Jenkins/slave/workspace/myprojectsClient_Build_iOS/iOSBuild/ios export IPHONEOS_DEPL.. 2015. 10. 14.
반응형