mirror of
https://git.sr.ht/~ashkeel/sourcehut-mirror-bridge
synced 2024-12-21 22:32:19 +00:00
Compare commits
1 commit
02fc03878d
...
461d015a1d
Author | SHA1 | Date | |
---|---|---|---|
|
461d015a1d |
6 changed files with 5 additions and 73 deletions
|
@ -1,4 +0,0 @@
|
||||||
target
|
|
||||||
LICENSE
|
|
||||||
README.md
|
|
||||||
.env
|
|
43
.drone.yml
43
.drone.yml
|
@ -1,43 +0,0 @@
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: default
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: publish sha
|
|
||||||
image: banzaicloud/drone-kaniko
|
|
||||||
settings:
|
|
||||||
registry: registry.fromouter.space
|
|
||||||
repo: uchumoe/sourcehut-mirror-bridge
|
|
||||||
cache: true
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
||||||
tags:
|
|
||||||
- latest
|
|
||||||
- ${DRONE_COMMIT_SHA}
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
|
|
||||||
- name: publish tag
|
|
||||||
image: banzaicloud/drone-kaniko
|
|
||||||
settings:
|
|
||||||
registry: registry.fromouter.space
|
|
||||||
repo: uchumoe/sourcehut-mirror-bridge
|
|
||||||
cache: true
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
||||||
tags:
|
|
||||||
- ${DRONE_COMMIT_BRANCH}
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
---
|
|
||||||
kind: signature
|
|
||||||
hmac: 925643c1816fd7df3823079bc98a79836e34e4641b8328ae0bc3eae37923ff84
|
|
||||||
|
|
||||||
...
|
|
5
.env
Normal file
5
.env
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
MIRROR_SOURCEHUT_TOKEN=AFTtM2cAAAAAAAAHYXNoa2VlbGD0EH1smnS5Nri8Mn+SZGLTE/oFX47id8EO09QlKCUV
|
||||||
|
MIRROR_GITEA_API_BASE=https://git.fromouter.space/api
|
||||||
|
MIRROR_GITEA_AUTH=hamcha:7159107dec5e558ebb0eea8a0a217589afd8c725
|
||||||
|
MIRROR_URL=https://eb87-79-40-140-240.ngrok.io
|
||||||
|
MIRROR_REPOSITORIES=test-webhook:Hamcha/strimertul-website
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1 @@
|
||||||
/target
|
/target
|
||||||
.env
|
|
20
Dockerfile
20
Dockerfile
|
@ -1,20 +0,0 @@
|
||||||
FROM public.ecr.aws/docker/library/rust:1-alpine as builder
|
|
||||||
|
|
||||||
RUN rustup default stable
|
|
||||||
RUN apk add --no-cache musl-dev openssl-dev openssl-libs-static pkgconf git
|
|
||||||
|
|
||||||
# Set `SYSROOT` to a dummy path (default is /usr) because pkg-config-rs *always*
|
|
||||||
# links those located in that path dynamically but we want static linking, c.f.
|
|
||||||
# https://github.com/rust-lang/pkg-config-rs/blob/54325785816695df031cef3b26b6a9a203bbc01b/src/lib.rs#L613
|
|
||||||
ENV SYSROOT=/dummy
|
|
||||||
|
|
||||||
WORKDIR /wd
|
|
||||||
COPY . /wd
|
|
||||||
RUN cargo build --release --target=x86_64-unknown-linux-musl
|
|
||||||
|
|
||||||
FROM public.ecr.aws/docker/library/alpine
|
|
||||||
ARG version=unknown
|
|
||||||
ARG release=unreleased
|
|
||||||
|
|
||||||
COPY --from=builder /wd/target/x86_64-unknown-linux-musl/release/sourcehut-mirror-bridge /usr/local/bin/
|
|
||||||
CMD ["sourcehut-mirror-bridge"]
|
|
|
@ -1,5 +0,0 @@
|
||||||
# sourcehut-mirror-bridge
|
|
||||||
|
|
||||||
SourceHut to Gitea active mirror bridge. Uses Soucehut GQL APIs to set up a webhook and manually sync a downstream Gitea/Forgejo repository set as a mirror.
|
|
||||||
|
|
||||||
Use case: You're running Drone CI or others linked to a Gitea instance and you want them to run as soon as possible.
|
|
Loading…
Reference in a new issue