Fix commit reference in sr.ht job note
Mirror sr.ht logs to GitLab
Print usage string to stderr
A CI bridge from GitLab to SourceHut.
In your GitLab project, go to Settings → CI/CD → General pipelines and set "CI/CD configuration file" to this URL: https://git.sr.ht/~emersion/dalligi/blob/master/templates/generate.yml
In your GitLab project, go to Settings → CI/CD → Runners. In "Specific runners", grab the URL and token.
Go to the meta.sr.ht OAuth2 page. Generate a token with read-write permissions for builds.sr.ht.
Register a new GitLab runner with:
dalligi register -gitlab-endpoint=<url> config.json
dalligi will ask for the GitLab and sr.ht tokens.
Start the runner with: dalligi run config.json
.
Make sure your repository has a sr.ht build manifest. You're all set!
If you prefer to ship your own GitLab CI configuration file, you can manually ask dalligi to run a sr.ht manifest. The upside is that this gets rid of the intermediate dalligi parent pipeline, but the downside is that the GitLab CI config needs to be kept in sync with the sr.ht build manifests.
If you have a single top-level .build.yml
manifest:
include: https://git.sr.ht/~emersion/dalligi/blob/master/templates/single.yml
If you have multiple manifests in .builds/
, for instance alpine.yml
and
freebsd.yml
:
include: https://git.sr.ht/~emersion/dalligi/blob/master/templates/multi.yml
alpine:
extends: .dalligi
freebsd:
extends: .dalligi
To override the default runner tag "dalligi", set -gitlab-tags
when
registering the runner.
AGPLv3