<?xml version="1.0" encoding="UTF-8" ?>
<feed xml:lang="ja" xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:thr="http://purl.org/syndication/thread/1.0">
  <title type="text">Jenkins</title>
  <subtitle type="html">CI ツールJenkinsの導入について</subtitle>
  <link rel="self" type="application/atom+xml" href="https://jenkins.blog.shinobi.jp/atom"/>
  <link rel="alternate" type="text/html" href="https://jenkins.blog.shinobi.jp/"/>
  <updated>2013-02-10T14:49:03+09:00</updated>
  <author><name>No Name Ninja</name></author>
  <generator uri="//www.ninja.co.jp/blog/" version="0.9">忍者ブログ</generator>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" />
  <entry>
    <id>jenkins.blog.shinobi.jp://entry/8</id>
    <link rel="alternate" type="text/html" href="https://jenkins.blog.shinobi.jp/Entry/8/" />
    <published>2013-02-17T22:16:23+09:00</published> 
    <updated>2013-02-17T22:16:23+09:00</updated> 
    <category term="初期導入" label="初期導入" />
    <title>第6章　カバレッジを取得する</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[書籍の内容ではうまく行きませんでした。<br />
JDK７では、そのままではNGでした。<br />
<br />
Ant Build.xml に一行追加で正常にうごくようになりました。<br />
<br />
参考コードは<a href="http://qiita.com/items/7a665e0e7f8ae67fddf5" target="_blank">こちら</a>]]> 
    </content>
    <author>
            <name>No Name Ninja</name>
        </author>
  </entry>
  <entry>
    <id>jenkins.blog.shinobi.jp://entry/7</id>
    <link rel="alternate" type="text/html" href="https://jenkins.blog.shinobi.jp/Entry/7/" />
    <published>2013-02-15T00:05:36+09:00</published> 
    <updated>2013-02-15T00:05:36+09:00</updated> 
    <category term="初期導入" label="初期導入" />
    <title>第5章　JUnit</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[第4章で紹介される　Build.xml　は、Antの自動処理を記述したファイルです。<br />
<br />
第4章のソースは、Javaの自動Compileが設定された、Build.xml　です。<br />
これを、少し変更してJunitの自動実行を追加します。<br />
<br />
特段難しいことはなく、コンパイルとテストが出来るように<br />
なりました。<br />
Sampleはテスト失敗するようにコードを仕組んでいるので、<br />
失敗→成功の手順が体験できます。<br />
<br />
<br />
<br /><a href="https://jenkins.blog.shinobi.jp/Entry/7/" target="_blank">つづきはこちら</a>]]> 
    </content>
    <author>
            <name>No Name Ninja</name>
        </author>
  </entry>
  <entry>
    <id>jenkins.blog.shinobi.jp://entry/6</id>
    <link rel="alternate" type="text/html" href="https://jenkins.blog.shinobi.jp/Entry/6/" />
    <published>2013-02-13T22:26:01+09:00</published> 
    <updated>2013-02-13T22:26:01+09:00</updated> 
    <category term="初期導入" label="初期導入" />
    <title>第4章　本番を想定して開発環境を準備する</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[JenkinsのPlugInをセットする<br />
<br />
・JUNITで自動テスト<br />
・Coberturaでカバレッジ測定<br />
・CheckstyleとFindBugsでインスペクション<br />
・JavaNCSSでコードステップ数のカウント<br />
<br />
事前準備なので順調にセット完了<br />
Jenkinsプラグインの管理から必要なPluginを取得<br />
]]> 
    </content>
    <author>
            <name>No Name Ninja</name>
        </author>
  </entry>
  <entry>
    <id>jenkins.blog.shinobi.jp://entry/5</id>
    <link rel="alternate" type="text/html" href="https://jenkins.blog.shinobi.jp/Entry/5/" />
    <published>2013-02-13T22:15:50+09:00</published> 
    <updated>2013-02-13T22:15:50+09:00</updated> 
    <category term="初期導入" label="初期導入" />
    <title>第3章　ジョブを作ってビルドする</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[ここからテストJOBの作成<br />
<br />
・新規JOBの作成<br />
・ソースコード管理システム設定<br />
・ビルド・トリガの設定<br />
・ビルドタスク設定<br />
・ビルド後の設定<br />
<br />
一通りJenkinsの設定方法を確認します。<br />
特段、問題なく設定できると思います。]]> 
    </content>
    <author>
            <name>No Name Ninja</name>
        </author>
  </entry>
  <entry>
    <id>jenkins.blog.shinobi.jp://entry/4</id>
    <link rel="alternate" type="text/html" href="https://jenkins.blog.shinobi.jp/Entry/4/" />
    <published>2013-02-12T21:21:10+09:00</published> 
    <updated>2013-02-12T21:21:10+09:00</updated> 
    <category term="初期導入" label="初期導入" />
    <title>第2章　インストールと設定</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[ここからInstallの方法<br />
<br />
書籍の内容で特に難しいこともなくインストール完了。<br />
WindowsのNative Packageをダウンロードして、Setup.exeを実行。<br />
<br />
これだけで、ほぼ完了。<br />
<br />
 2.1.4 SubVersionをインストールする<br />
collabnet subversion edge を紹介しています。<br />
<a href="http://www.collab.net/jp/products/subversion" target="_blank">HP</a>はこちらから<br />
<br />
<i>失敗談</i><br />
自分の環境では、JDKのインストール後、環境変数の初期設定を<br />
忘れていたため、SVNのインストールに失敗しました。<br />
これを怠ると、管理ツール（SubversionEdge）起動しますが、SVN本体の起動に失敗します。<br />
<br />
Windows用　環境変数設定<br />
JAVA_HOME = （JDKインストールパス）<br />
Path =%JAVA_HOME%\bin<br />
<br />
]]> 
    </content>
    <author>
            <name>No Name Ninja</name>
        </author>
  </entry>
  <entry>
    <id>jenkins.blog.shinobi.jp://entry/3</id>
    <link rel="alternate" type="text/html" href="https://jenkins.blog.shinobi.jp/Entry/3/" />
    <published>2013-02-12T21:03:21+09:00</published> 
    <updated>2013-02-12T21:03:21+09:00</updated> 
    <category term="読レポ" label="読レポ" />
    <title>第1章　継続的インテグレーションとJenkins</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[この章は特に設定項目はなかったです。<br />
<br />
CIの効用やJenkinsで出来ること、Jenkinsの歴史などを<br />
ぱらぱらと読書。<br />
<br />
ふむふむ。<br />
]]> 
    </content>
    <author>
            <name>No Name Ninja</name>
        </author>
  </entry>
  <entry>
    <id>jenkins.blog.shinobi.jp://entry/2</id>
    <link rel="alternate" type="text/html" href="https://jenkins.blog.shinobi.jp/Entry/2/" />
    <published>2013-02-11T17:51:38+09:00</published> 
    <updated>2013-02-11T17:51:38+09:00</updated> 
    <category term="初期導入" label="初期導入" />
    <title>JDK自動インストール(Windows版)</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[JDKの自動インストールがうまくいかない。<br />
Oracle社のJDK（Java Development Kit）のWindows版は、<br />
残念ながらサイレントインストールに対応していない為、自動インストールが終了しない。<br />
（JDK7u11時点）<br />
<br />
Jenkinsの設定<br />
<br />
Jenkins＞Jenkinsの管理＞システムの設定＞JDK＞自動インストール<br /><a href="https://jenkins.blog.shinobi.jp/Entry/2/" target="_blank">つづきはこちら</a>]]> 
    </content>
    <author>
            <name>No Name Ninja</name>
        </author>
  </entry>
  <entry>
    <id>jenkins.blog.shinobi.jp://entry/1</id>
    <link rel="alternate" type="text/html" href="https://jenkins.blog.shinobi.jp/Entry/1/" />
    <published>2013-02-10T16:12:07+09:00</published> 
    <updated>2013-02-10T16:12:07+09:00</updated> 
    <category term="初期導入" label="初期導入" />
    <title>Jenkinsの導入</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[噂に聞くCI(continuous integration)ツールを使ってみたいと思い立ち、<br />
早速、トライしてみました。<br />
<br />
参考書は、「Jenkins実践入門」に決定。<br />
<br />
簡単に構築を試したいので、WindowsXP　＋　XAMPP ＋ Jenkins<br />
という構成にしました。<br />
<br />
<a href="http://www.amazon.co.jp/gp/product/4774148911/ref=as_li_ss_il?ie=UTF8&camp=247&creative=7399&creativeASIN=4774148911&linkCode=as2&tag=nespe2011-22"><img border="0" src="http://ws.assoc-amazon.jp/widgets/q?_encoding=UTF8&ASIN=4774148911&Format=_SL110_&ID=AsinImage&MarketPlace=JP&ServiceVersion=20070822&WS=1&tag=nespe2011-22" ></a><img src="http://www.assoc-amazon.jp/e/ir?t=nespe2011-22&l=as2&o=9&a=4774148911" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /><br />
<br /><a href="https://jenkins.blog.shinobi.jp/Entry/1/" target="_blank">つづきはこちら</a>]]> 
    </content>
    <author>
            <name>No Name Ninja</name>
        </author>
  </entry>
</feed>