LoginSignup
1
0

More than 5 years have passed since last update.

circleci2.0のconfig.ymlのデバッグ

Posted at

これは

circleci2.0の.circleci/config.ymlの設定がうまくできずに困っていたときに、サーバの設定を確認するためにしたこと。

やったこと

stepのなかに、runでサーバの状態を確認するコマンドを入れただけ。

circleci/config.yml
version: 2
jobs:
  build:
    :
    steps:
      :
      - run:
          name: Process List
          command: ps aux
  :
  :

image.png

なんで

手元の手慰みのプロジェクトのDBMSをSQLiteからPostgreSQLにしようとしたときに、うまくせつぞくできなくて…。それでサーバの状態を見ながらconfig.ymlを見ていった次第でした。
sshでログインして確認したかったけど、2.0はまだないので、こんなにまだるっこしい方法でやったのでした。

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