LoginSignup
15

More than 5 years have passed since last update.

Jenkinsでgitリポジトリ上の特定のファイルが変わってたら何かしたいとき

Posted at

下記のようなスクリプトをビルドのシェル実行に書きます。

FILE=/path/to/file
CHANGED=`git diff --name-only $GIT_PREVIOUS_COMMIT $GIT_COMMIT -- $FILE`
[ -z "$CHANGED" ] && exit 0

echo "do it! do it!"

メモ

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
15