Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Jenkins で実行中のプロジェクトを異なるビルド ステップ間で手動で一時停止し、後で再開する方法はありますか? (私が求めている機能は、buildforge にあるものと似ています。)
いいえ。現在のバージョンの Jenkins 1.479 ではありません。
bash では、標準 (1) およびエラー (2) の出力を次のように再ルーティングして破棄できます。
>/dev/null 2>&1
しかし、次の例では何かが異なります。
nohup myscript.sh >myscript.log 2>&1 </dev/null &
<