2022-10-23

今日はこれ対応にトライ

gh-actions で生成するようにして解決。 a00f9c4

生成先は _site ディレクトリの存在を仮定しなくてよいように assets/css/ のままとした。

gh-actions

Github Actions の使い方メモ を読んでざっと把握して、公式を当たる。

uses

Selects an action to run as part of a step in your job.

Actions are either JavaScript files or Docker containers.

see. jobs.<job_id>.steps[*].uses

with

action.yml に定義される inputs に渡す値をパラメータをを記述するセクション

A map of the input parameters defined by the action.

see. jobs.<job_id>.steps[*].with

pidstat

Report statistics for Linux tasks.

プロセスの毎の統計情報を調べる。

$ pidstat 1 1 -h -l -C pidstat
Linux 5.14.0-1052-oem (X1-Carbon-9th)   2022年10月23日  _x86_64_        (8 CPU)

# Time        UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command
16時43分52秒  1000   2281305    0.98    1.96    0.00    0.00    2.94     4  pidstat 1 1 -h -l -C pidstat

使い方は man pidstat 見ろ!