Using RegistryCI on your own package registry
In order to create and maintain a custom Julia registry, you can use LocalRegistry.jl. After you have the registry configured, you can setup CI using RegistryCI by following how it is used in the General registry.
Basic configuration
You will first need to copy the .ci
folder in the root of the General registry to the root of your own registry. This folder contains some resources required for the RegistryCI package to work and update itself. If you do not need AutoMerge support, there is no need to copy the stopwatch.jl
file in the .ci
folder.
Next, you will need to copy the registry-consistency-ci.yml
and update_manifest.yml
workflow files.
The registry-consistency-ci.yml
file should be modified as follows if you have packages in your registry that depend on packages in the General registry. If the packages in your registry depend on packages in other registries, they should also be added to registry_deps
- run: julia --project=.ci/ --color=yes -e 'import RegistryCI; RegistryCI.test()'
+ run: julia --project=.ci/ --color=yes -e 'import RegistryCI; RegistryCI.test(registry_deps=["https://github.com/JuliaRegistries/General"])'
You can optionally use the registry name instead of the URL:
- run: julia --project=.ci/ --color=yes -e 'import RegistryCI; RegistryCI.test()'
+ run: julia --project=.ci/ --color=yes -e 'import RegistryCI; RegistryCI.test(registry_deps=["General"])'
If Julia pkg server is available and recognized, then the Julia Pkg will try to download registry from it. This can be useful to reduce the unnecessary network traffic, for example, if you host a private pkg server in your local network(e.g., enterprise network with firewall) and properly set up the environment variable JULIA_PKG_SERVER
, then the network traffic doesn't need to pass through the proxy to GitHub.
Registry fetched from Julia pkg server currently has some observable latency(e.g., hours). Check here for more information.
The self-update mechanism mentioned above uses a TAGBOT_TOKEN
secret in order to create a pull request with the update. This secret is a personal access token which must have the repo
scope enabled. To create the repository secret follow the instructions here. Use the name TAGBOT_TOKEN
and the new PAT as the value.
TagBot triggers
If you want to use TagBot in the packages that you register in your registry, you need to also copy the TagBotTriggers.yml
file. That workflow file also needs the TAGBOT_TOKEN
secret mentioned above. In the TagBot.yml
workflows of the registered packages you will also need to add the registry
input as stated in the TagBot readme
with:
token: ${{ secrets.GITHUB_TOKEN }}
registry: MyOrg/MyRegistry
AutoMerge support
In order to enable automerge support, you will also have to copy the automerge.yml
file and change the AutoMerge
invocation appropriately
using RegistryCI
using Dates
RegistryCI.AutoMerge.run(
merge_new_packages = ENV["MERGE_NEW_PACKAGES"] == "true",
merge_new_versions = ENV["MERGE_NEW_VERSIONS"] == "true",
new_package_waiting_period = Day(3),
new_jll_package_waiting_period = Minute(20),
new_version_waiting_period = Minute(10),
new_jll_version_waiting_period = Minute(10),
registry = "MyOrg/MyRegistry",
tagbot_enabled = true,
authorized_authors = String["TrustedUser"],
authorized_authors_special_jll_exceptions = String[""],
suggest_onepointzero = false,
additional_statuses = String[],
additional_check_runs = String[],
check_license = true,
public_registries = String["https://github.com/HolyLab/HolyLabRegistry"],
)
Most importantly, the following should be changed
registry = "MyOrg/MyRegistry",
authorized_authors = String["TrustedUser"],
You will also have to make the following change in .ci/stopwatch.jl
- registry = GitHub.Repo("JuliaRegistries/General")
+ registry = GitHub.Repo("MyOrg/MyRegistry")
Note regarding private registries
In the case of a private registry, you might get permission errors when executing the instantiate.sh
script. In that case you will also have to add the following
- run: chmod 400 .ci/Project.toml
- run: chmod 400 .ci/Manifest.toml
+ - run: chmod +x .ci/instantiate.sh
in registry-consistency-ci.yml
and also TagBotTriggers.yml
and automerge.yml
(in which the above appears twice) files if those features are used.
Author approval workflow support
Some guidelines allow the person invoking registration (typically the package author) to "approve" AutoMerge even if the guideline is not passing. This is facilitated by a labelling workflow author_approval.yml
that must run on the registry in order to translate author-approval comments into labels that AutoMerge can use. The General registry's workflows should once again be used as an example.