メモ: CircleCI
概要
- 無料枠がある
- 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
Author And Source
この問題について(メモ: CircleCI), 我々は、より多くの情報をここで見つけました https://qiita.com/tukiyo3/items/4d9b2bd4181ec4fa78bb著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .