2017-06-23 01:04:51 +02:00
|
|
|
Zulip supports integration with Perforce as a [trigger][1]
|
|
|
|
that fires once a changelist is submitted and committed.
|
|
|
|
|
2020-03-27 01:32:21 +01:00
|
|
|
[1]: https://www.perforce.com/manuals/p4sag/Content/P4SAG/chapter.scripting.html
|
2017-06-23 01:04:51 +02:00
|
|
|
|
2021-03-15 23:18:55 +01:00
|
|
|
1. {!download-python-bindings.md!}
|
|
|
|
|
|
|
|
1. The Perforce trigger will be installed to a location like
|
|
|
|
`/usr/local/share/zulip/integrations/perforce`.
|
|
|
|
|
2022-06-26 02:38:55 +02:00
|
|
|
1. {!change-zulip-config-file.md!}
|
2021-03-15 23:18:55 +01:00
|
|
|
|
|
|
|
1. 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.
|
|
|
|
|
|
|
|
1. Edit your [trigger table][2] 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%"
|
|
|
|
|
|
|
|
[2]: https://www.perforce.com/manuals/p4sag/Content/P4SAG/chapter.scripting.html#d0e14583
|
|
|
|
|
|
|
|
1. 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
|
|
|
|
stream `foo-commits`. Messages about changelists that modify
|
|
|
|
files in the depot root or files in multiple direct subdirectories
|
|
|
|
of the depot root will be sent to `depot-commits`.
|
|
|
|
If you'd prefer different behavior, such as all commits across your
|
|
|
|
depot going to one stream, change it now in `zulip_perforce_config.py`.
|
|
|
|
Make sure that everyone interested in getting these post-commit Zulips
|
|
|
|
is subscribed to the relevant streams!
|
|
|
|
|
|
|
|
1. 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
|
2023-06-16 01:41:38 +02:00
|
|
|
owner by direct message that they may wish to create the stream.
|
2021-03-15 23:18:55 +01:00
|
|
|
If this behaviour is undesirable, for example with a large and busy
|
|
|
|
Perforce server, change the `ZULIP_IGNORE_MISSING_STREAM`
|
|
|
|
variable in `zulip_perforce_config.py` to `True`.
|
|
|
|
This will change the hook's behaviour to first check whether the
|
|
|
|
destination stream exists and silently drop messages if it does not.
|
2017-06-23 01:04:51 +02:00
|
|
|
|
|
|
|
{!congrats.md!}
|
|
|
|
|
2020-08-05 11:50:17 +02:00
|
|
|
![Perforce notification bot message](/static/images/integrations/perforce/001.png)
|