- Today
- Total
목록Devops (30)
프로그래밍 농장
퍼포스 명령어 또는 동작을 실행하려하면 아래와 같은 에러 로그들이 발생하는 경우가 있다 . 1. Workspace 변경 시, "Path 'd: \workspace\trunk\KR_Server\...' is not under client's root 'D:\workspace\trunk\KR_Client'.2. Client 'KR_Client' unknown - use 'client' command to create it. 1번의 경우, 일반적으로 퍼포스 워크스페이스와 P4CLIENT 의 값을 일치시켜 주어야하는 이슈이다. 2 번의 경우, 최초 p4 set 을 완료하였다면 , p4 client 커맨드를 실행한다 -> 메모장이 뜨면 퍼포스 워크스페이스 및 set 내용 확인후 닫기. -> 이후 p4 명령어 ..
https://groups.google.com/g/subversion_users/c/aeqFy_MfIMo On Thu, Dec 16, 2010 at 05:03:00PM +0100, Rainer Dorsch wrote: > > I try to commit the change > > > > $ svn commit -m "minor change" > > Sending README > > Transmitting file data .svn: Commit " data-og-host="groups.google.com" data-og-source-url="https://groups.google.com/g/subversion_users/c/aeqFy_MfIMo" data-og-url="https://groups.goog..
https://baekji919.tistory.com/entry/Jenkins-Jenkins-Pipeline-%EA%B2%B0%EA%B3%BC%EC%97%90-%EB%94%B0%EB%9D%BC-%EB%A9%94%EC%84%B8%EC%A7%80-%EB%B3%B4%EB%82%B4%EA%B8%B0 [Jenkins] Jenkins Pipeline - 결과에 따라 메세지 보내기Jenkins job에 대해서 pipeline으로 작성을 할 때 빌드 및 배포에 대한 결과에 따라서 다른 작업을 두 가지 방법으로 진행할 수 있다. # try / catch 사용하기 pipeline { agent any stages { stage('Checkout') { steps { scbaekji919.tistory.com
https://medium.com/@oguzhanndilber/how-we-cracked-the-code-signing-nightmare-jenkins-safenet-tokens-and-the-invisible-rdp-trap-41be15100c88 How We Cracked the Code-Signing Nightmare: Jenkins, Safenet Tokens, and the Invisible RDP Trap“We thought it’d be simple: automate code-signing for customer-facing DLLs using Jenkins. But when the Safenet token refused to show up on…medium.com 최초 토큰 재발급(갱신) ..
svn 저장소를 사용하다보면, 저장소 서버장비의 용량이 부족해지는 상황이 발생할수있습니다.확인해보면 대부분 .svn/pristine 폴더 용량으로 인해 디스크 공간이 부족한 경우입니다. SVN 은 네트워크 통신을 최소화 하고자, 수정되지 않은 원본 데이터를 pristine 폴더에 보관합니다. 그리고 Diff를 뜰 때, 원격 저장소의 것과 비교하지 않고 pristine 폴더의 데이터와 수정된 working copy 를 비교하게 됩니다.결국 원본을 보관하는데 어떤 메커니즘으로 인해 점점 용량이 쌓이게 됩니다. 그래서 아래처러 Cleanup 메뉴에서 4번째, Vacuum pristine copies 옵션을 체크하고 돌려줍니다. * dir_abspath points to the working copy roo..
stderr: svn: warning: W155035: The specified path has an unexpected statusstderr: svn: E205011: Failure occurred processing one or more externals definitions 기본적으로 위와 같은 에러의 원인은 다음과 같을수있습니다.-> 해당경로 작업시 원본 프로젝트 경로를 수정해야 svn 동작간에 이슈가 없는데, external이 걸려있는 상태의 프로젝트를 수정시 위 와 같은 이슈가 발생할수있음. 해결방법 external 을 svn properties 에서 제거후 커밋, 클린업데이트, 리버트 진행. wso2 svn update - E205011: Failure occurred processi..