Skip to content

Commit 5484b0e

Browse files
Add localregistry input option (#38)
* Add localregistry input option Option to add local registries to build process by specifying their url (https). Authentication to the repos via user GitHub token. * Backward compatible keyword syntax and Wrap new code in VERSION > 1.5 * Update Interface&README, add git_cli amd remove token flag Provide multiple remotes separated with | Add example to ReadMe Support for private repos/packages with SSH protocol * Update README.md Co-authored-by: Sascha Mann <[email protected]> * Update action.yml Co-authored-by: Sascha Mann <[email protected]> * Print warn mesasge if git_cli = true with Julia<1.7. * Add `::notice::` formatting --------- Co-authored-by: Sascha Mann <[email protected]>
1 parent 00f9fd6 commit 5484b0e

File tree

2 files changed

+57
-1
lines changed

2 files changed

+57
-1
lines changed

README.md

+26
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,29 @@ is already set. If you want another registry flavor (i.e. `conservative`) this
4343
should be defined in the `env:` section of the relevant workflow or step. See
4444
[Registry flavors](https://pkgdocs.julialang.org/dev/registries/#Registry-flavors)
4545
for more information.
46+
47+
### Adding Local Registries
48+
49+
Personal registries, e.g. created with [LocalRegistry.jl](https://github.com/GunnarFarneback/LocalRegistry.jl), can be added to the CI using the `localregistry` input option. If the personal registry as well as packages needed in the current project are public, no additional setup is required if the registry url is specified in https-format.
50+
51+
If the registry contains private packages, or is itself private, the ssh protocol should to be used. The user has to provide the corresponding private SSH-keys to the `ssh-agent` to access packages and registry. This can be conveniently done using the [webfactory/ssh-agent](https://github.com/webfactory/ssh-agent) action. A snippet illustrating the usage of (private) personal registries is shown below
52+
53+
```yaml
54+
...
55+
# Adding private SSH keys (only necessary for accessing private packages and/or
56+
# when providing Registry-link in ssh format)
57+
- uses: webfactory/[email protected]
58+
with:
59+
ssh-private-key: |
60+
${{ secrets.PRIVATE_DEPLOY_KEY }}
61+
${{ secrets.PRIVATE_DEPLOY_KEY2 }}
62+
- uses: julia-actions/julia-buildpkg@v1
63+
with:
64+
localregistry: |
65+
https://github.com/username/PersonalRegistry.git
66+
[email protected]:username2/PersonalRegistry2.git
67+
git_cli: false # = JULIA_PKG_USE_CLI_GIT. Options: true | false (default)
68+
...
69+
```
70+
71+
For Julia 1.7 and above, the `git_cli` option can be used to set the `JULIA_PKG_USE_CLI_GIT` [environment flag](https://docs.julialang.org/en/v1/manual/environment-variables/), for additional control of the SSH configuration used by `Pkg` to add/dev packages.

action.yml

+31-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ inputs:
1313
precompile:
1414
description: 'Whether to allow auto-precompilation (via the `JULIA_PKG_PRECOMPILE_AUTO` env var). Options: yes | no. Default value: no.'
1515
default: 'no'
16+
localregistry:
17+
description: 'Add local registries hosted on GitHub. Specified by providing the url (https/ssh) to the repositories as a newline (\n) seperated list.
18+
User is responsible for setting up the necessary SSH-Keys to access the repositories if necessary.'
19+
default: ''
20+
git_cli:
21+
description: 'Determine if Pkg uses the cli git executable (Julia >= 1.7). Might be necessary for more complicated SSH setups.
22+
Options: true | false. Default : false'
23+
default: 'false'
1624

1725
runs:
1826
using: 'composite'
@@ -22,8 +30,30 @@ runs:
2230
shell: bash
2331
- run: |
2432
import Pkg
25-
VERSION >= v"1.5-" && Pkg.Registry.add("General")
33+
34+
# Determine if Pkg uses git-cli executable instead of LibGit2
35+
VERSION >= v"1.7-" && (ENV["JULIA_PKG_USE_CLI_GIT"] = ${{ inputs.git_cli }})
36+
37+
if VERSION < v"1.7-" && ${{ inputs.git_cli }} == true
38+
printstyled("::notice::JULIA_PKG_USE_CLI_GIT requires Julia >= 1.7. Using default LibGit2 git-interface instead! \n"; color = :yellow)
39+
end
40+
41+
42+
if VERSION >= v"1.5-"
43+
Pkg.Registry.add("General")
44+
45+
# If provided add local registries
46+
if !isempty("${{ inputs.localregistry }}")
47+
local_repos = split("${{ inputs.localregistry }}", "\n") .|> string
48+
for repo_url in local_repos
49+
isempty(repo_url) && continue
50+
Pkg.Registry.add(Pkg.RegistrySpec(; url = repo_url))
51+
end
52+
end
53+
end
54+
2655
VERSION >= v"1.1.0-rc1" ? retry(Pkg.build)(verbose=true) : retry(Pkg.build)()
2756
shell: julia --color=yes --project=${{ inputs.project }} {0}
2857
env:
2958
JULIA_PKG_PRECOMPILE_AUTO: "${{ inputs.precompile }}"
59+
GITHUB_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)