2.3 KiB
Zulip supports integration with Perforce as a trigger that fires once a changelist is submitted and committed.
-
{!download-python-bindings.md!}
-
The Perforce trigger will be installed to a location like
/usr/local/share/zulip/integrations/perforce
. -
{!change-zulip-config-file.md!}
-
If you have a P4Web viewer set up, you may change
P4_WEB
to point at the base URL of the server. If this is configured, then the changelist number of each commit will be converted to a hyperlink that displays the commit details on P4Web. -
Edit your trigger table with
p4 triggers
and add an entry something like the following:notify_zulip change-commit //depot/... "/usr/local/share/zulip/integrations/perforce/zulip_change-commit.py %change% %changeroot%"
-
By default, this hook will send to streams of the form
depot_subdirectory-commits
. So, a changelist that modifies files in//depot/foo/bar/baz
will result in a message to streamfoo-commits
. Messages about changelists that modify files in the depot root or files in multiple direct subdirectories of the depot root will be sent todepot-commits
. If you'd prefer different behavior, such as all commits across your depot going to one stream, change it now inzulip_perforce_config.py
. Make sure that everyone interested in getting these post-commit Zulips is subscribed to the relevant streams! -
By default, this hook will send a message to Zulip even if the destination stream does not yet exist. Messages to nonexistent streams prompt the Zulip Notification Bot to inform the bot's owner by direct message that they may wish to create the stream. If this behaviour is undesirable, for example with a large and busy Perforce server, change the
ZULIP_IGNORE_MISSING_STREAM
variable inzulip_perforce_config.py
toTrue
. This will change the hook's behaviour to first check whether the destination stream exists and silently drop messages if it does not.
{!congrats.md!}