mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 21:46:22 +01:00
27 lines
600 B
Plaintext
27 lines
600 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * assembly/builds
|
|
|
|
[id="builds-using-cli-post-commit-build-hooks_{context}"]
|
|
= Using the CLI to set post commit build hooks
|
|
|
|
The `oc set build-hook` command can be used to set the build hook for a build
|
|
configuration.
|
|
|
|
.Procedure
|
|
|
|
. To set a command as the post-commit build hook:
|
|
+
|
|
----
|
|
$ oc set build-hook bc/mybc \
|
|
--post-commit \
|
|
--command \
|
|
-- bundle exec rake test --verbose
|
|
----
|
|
+
|
|
. To set a script as the post-commit build hook:
|
|
+
|
|
----
|
|
$ oc set build-hook bc/mybc --post-commit --script="bundle exec rake test --verbose"
|
|
----
|