[카테고리:] Continuous Integration Server

  • 젠킨스 설정

    차기 프로젝트에서는 CI 툴을 사용하고자 Jenkins 사용법에 대해서 알아봤다. 빌드 방법은 maven을 이용해 war 생성 후 tomcat manager를 통해 war를 업로드 하는 식이다. 1.  먼저 Jenkins를 설치한 후 웹 사이트에 접속한다. 2.  시스템 설정 Jenkins 관리 > 시스템 설정 메뉴 접속 후 다음과 같이 JDK, Maven, 이메일, SVN 버전 설정을 한다. 이메일 서버는 gmail을 이용하였다. 3.  […]

  • 젠킨스 msbuild 로 컴파일 하기

    n my previous article “Getting Started with Jenkins and GitHub” I showed you how to create your first Jenkins job and download the source of your project from GitHub. If your projects are stored in TFS you can read how to setup your Jenkins job for TFS here: “Integrate Jenkins with Team Foundation Server“. The next logical step […]

  • CI System (Jenkins) 구축하기 – 1

    CI(Continuous Integration system)가 무엇인가? 지속적 통합이라는 뜻으로 형상관리 시스템 (SVN or Git) 에 있는 Source 파일을 읽어들여 자동으로 빌드하여 실행할 수 있는 결과물 형태 (exe , jar, apk or war 등) 로 주기적으로 생산해주는 시스템 그냥 쉽게 말하면 주기적으로 소스파일을 빌드해서 실행 파일을 만든다. CI System이 왜 좋지? 예를들어 개발자 + 기획자 + 테스터 + […]

  • [Jenkins] 설치후 Security 설정하기

    jenkins를 설치하고 로그인 Security 설정하는 법을 알아보자. 1) 우선 jenkins.war 을 다운로드 받는다. – http://jenkins-ci.org 사이트 방문 – war 파일 다운로드 하기 (윈도우의 exe 버전은 받지 말자) 2) 특정 디렉토리에 jenkins.war파일을 놓고, bat 파일을 만들자 – d:/jenkins/jenkins.war 파일 놓기 – d:/jenkins/startJenkins.bat 파일 만들기 (물론 JDK1.5 이상 버전으로 pre-install 되어 있어야 한다) java -jar ./jenkins.war 3) jenkins를 […]

  • Linux CentOS 에 Jenkins 설치

    CentOS 에서 Jenkins 설치 하는 과정 이다. 환경 CentOS 6.x Java 1.6 Tomcat6 Apache   Jenkins Download 간단히  yum 명령어를 통해 받아올 것이다. 그런데, 보통 yum repository에 등록되어 있지 않으므로 수동으로 등록 해 준다. 1 2 wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo rpm –import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key Yum Install 1 2 3 4 yum install jenkins # 설치 확인 […]