0
0

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.

メモ: CircleCI

Last updated at Posted at 2020-03-23

概要

  • 無料枠がある
    • docker buildが出来る
    • 定期的に実行が出来る
  • GitHubのリポジトリに以下ファイルを用意
.circleci/config.yml

project/requirements.txt
project/test_run.py

.circleci/config.yml について

  • 定期実行の定義
.circleci/config.yml抜粋
 workflows:
   version: 2
   normal_workflow:
     jobs:
       - build
   schedule_workflow:
     triggers:
       - schedule:
           # UTCで記述。例: JST10時 => UTC1時
+          cron: "5 1,13 * * *"
           filters:
             branches:
               only:
                 - master
     jobs:
       - build
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?