1
2

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 3 years have passed since last update.

CircleCI入門

Last updated at Posted at 2020-05-23

CircleCIとは?

Youtubeを見ていると出てくる、CircleCIという言葉。

CI(継続的インティグレーション)/CD(継続的デリバリー)を提供するサービス。

継続的インテグレーション:アプリケーションのコード最新化・テスト
継続的デリバリー:リポジトリからソースのデプロイ

CircleCIでHelloWorld

GitHubやBitbucketにアカウントを登録するが必要

リポジトリを作成して、.circleciと言うフォルダを作り、
その中のconfig.ymlで記述する。

config.ymlは、上記のドキュメントにある内容を元に記載する。

version: 2.1
jobs:
  build:
    docker: 
      - image: circleci/node:4.8.2 # the primary container, where your job's commands are run
    steps:
      - checkout # check out the code in the project directory
      - run: echo "hello world" # run the `echo` command

ファイルをGitリポジトリに反映する

CircleCIにセットアップ

CircleCIのページに移動して、該当のリポジトリでログイン

ログイン後にメニューバーからAddProjectを選択して、上でつくったリポジトリを選択

image.png

Add Manuallyを選択

スクリーンショット 2020-05-23 18.41.43.png

StratBuildingを選択

スクリーンショット 2020-05-23 18.41.54.png

ビルドが始まり、以下のメッセージが表示されれば成功

image.png

1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?