3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

GiLab CI | GiLab CI のインストール

Posted at

GiLab CI | GiLab CI のインストール

概要

GiLab CI をインストールします

前提

OS: Ubuntu14.04 LTS

手順

基本は公式サイトの手順通り

※GitLab CI Runnerのインストールについては別途

セットアップ完了後、該当URLにアクセス

無事トップページを確認できました

gitlab_ci_setup_complete.png

補足

2014/07/16に、手順を実施した際にRubyのインストールでエラーになった。

エラーメッセージの情報に従い下記の C のコードを編集

sudo vi /tmp/ruby/ruby-2.0.0-p353/ext/readline/readline.c
  • 修正前
/tmp/ruby/ruby-2.0.0-p353/ext/readline/readline.c
rl_pre_input_hook = (Function *)readline_pre_input_hook;
  • 修正後
/tmp/ruby/ruby-2.0.0-p353/ext/readline/readline.c
rl_pre_input_hook = (rl_hook_func_t *)readline_pre_input_hook;
  • 修正後、 sudo make install を再実行
sudo make install
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?