mirror of
https://github.com/julia-actions/julia-buildpkg.git
synced 2026-02-18 12:06:54 +08:00
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 <git@mail.saschamann.eu> * Update action.yml Co-authored-by: Sascha Mann <git@mail.saschamann.eu> * Print warn mesasge if git_cli = true with Julia<1.7. * Add `::notice::` formatting --------- Co-authored-by: Sascha Mann <git@mail.saschamann.eu>
This commit is contained in:
32
action.yml
32
action.yml
@@ -13,6 +13,14 @@ inputs:
|
||||
precompile:
|
||||
description: 'Whether to allow auto-precompilation (via the `JULIA_PKG_PRECOMPILE_AUTO` env var). Options: yes | no. Default value: no.'
|
||||
default: 'no'
|
||||
localregistry:
|
||||
description: 'Add local registries hosted on GitHub. Specified by providing the url (https/ssh) to the repositories as a newline (\n) seperated list.
|
||||
User is responsible for setting up the necessary SSH-Keys to access the repositories if necessary.'
|
||||
default: ''
|
||||
git_cli:
|
||||
description: 'Determine if Pkg uses the cli git executable (Julia >= 1.7). Might be necessary for more complicated SSH setups.
|
||||
Options: true | false. Default : false'
|
||||
default: 'false'
|
||||
|
||||
runs:
|
||||
using: 'composite'
|
||||
@@ -22,8 +30,30 @@ runs:
|
||||
shell: bash
|
||||
- run: |
|
||||
import Pkg
|
||||
VERSION >= v"1.5-" && Pkg.Registry.add("General")
|
||||
|
||||
# Determine if Pkg uses git-cli executable instead of LibGit2
|
||||
VERSION >= v"1.7-" && (ENV["JULIA_PKG_USE_CLI_GIT"] = ${{ inputs.git_cli }})
|
||||
|
||||
if VERSION < v"1.7-" && ${{ inputs.git_cli }} == true
|
||||
printstyled("::notice::JULIA_PKG_USE_CLI_GIT requires Julia >= 1.7. Using default LibGit2 git-interface instead! \n"; color = :yellow)
|
||||
end
|
||||
|
||||
|
||||
if VERSION >= v"1.5-"
|
||||
Pkg.Registry.add("General")
|
||||
|
||||
# If provided add local registries
|
||||
if !isempty("${{ inputs.localregistry }}")
|
||||
local_repos = split("${{ inputs.localregistry }}", "\n") .|> string
|
||||
for repo_url in local_repos
|
||||
isempty(repo_url) && continue
|
||||
Pkg.Registry.add(Pkg.RegistrySpec(; url = repo_url))
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
VERSION >= v"1.1.0-rc1" ? retry(Pkg.build)(verbose=true) : retry(Pkg.build)()
|
||||
shell: julia --color=yes --project=${{ inputs.project }} {0}
|
||||
env:
|
||||
JULIA_PKG_PRECOMPILE_AUTO: "${{ inputs.precompile }}"
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
|
||||
Reference in New Issue
Block a user