mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-12-26 19:10:10 +00:00
Compare commits
6 Commits
6b576f2ffe
...
c5d45355a8
Author | SHA1 | Date | |
---|---|---|---|
c5d45355a8 | |||
1a85feb344 | |||
c75418db67 | |||
7c8e463929 | |||
8f04f49086 | |||
ec2f826dec |
@ -80,6 +80,9 @@ builds:
|
|||||||
dir: ./
|
dir: ./
|
||||||
env:
|
env:
|
||||||
- CGO_ENABLED=1
|
- CGO_ENABLED=1
|
||||||
|
- CC=x86_64-linux-gnu-gcc
|
||||||
|
- CXX=x86_64-linux-gnu-gcc
|
||||||
|
- PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig:$PKG_CONFIG_PATH
|
||||||
flags:
|
flags:
|
||||||
- -tags=tray
|
- -tags=tray
|
||||||
ldflags:
|
ldflags:
|
||||||
|
48
.woodpecker/git-binary.yaml
Normal file
48
.woodpecker/git-binary.yaml
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
when:
|
||||||
|
- event: push
|
||||||
|
branch: main
|
||||||
|
# - evaluate: 'CI_PIPELINE_EVENT != "PULL_REQUEST" && CI_COMMIT_BRANCH == CI_REPO_DEFAULT_BRANCH'
|
||||||
|
|
||||||
|
clone:
|
||||||
|
git:
|
||||||
|
image: woodpeckerci/plugin-git
|
||||||
|
settings:
|
||||||
|
tags: true
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: redoc
|
||||||
|
image: docker.io/hrfee/jfa-go-build-docker:latest
|
||||||
|
environment:
|
||||||
|
REDOC_SSH_ID:
|
||||||
|
from_secret: REDOC_SSH_ID
|
||||||
|
commands:
|
||||||
|
- sh -c "echo \"$REDOC_SSH_ID\" > /tmp/id_redoc && chmod 600 /tmp/id_redoc"
|
||||||
|
- bash -c 'sftp -P 3625 -i /tmp/id_redoc -o StrictHostKeyChecking=no redoc@api.jfa-go.com:/home/redoc <<< $"put docs/swagger.json jfa-go.json"'
|
||||||
|
- name: build
|
||||||
|
image: docker.io/hrfee/jfa-go-build-docker:latest
|
||||||
|
environment:
|
||||||
|
JFA_GO_SNAPSHOT: y
|
||||||
|
JFA_GO_BUILT_BY:
|
||||||
|
from_secret: BUILT_BY
|
||||||
|
commands:
|
||||||
|
- curl -sfL https://goreleaser.com/static/run > goreleaser
|
||||||
|
- chmod +x goreleaser
|
||||||
|
- ./scripts/version.sh ./goreleaser --snapshot --skip=publish --clean
|
||||||
|
- name: deb-repo
|
||||||
|
image: docker.io/hrfee/jfa-go-build-docker:latest
|
||||||
|
environment:
|
||||||
|
REPO_SSH_ID:
|
||||||
|
from_secret: REPO_SSH_ID
|
||||||
|
commands:
|
||||||
|
- sh -c "echo \"$REPO_SSH_ID\" > /tmp/id_repo && chmod 600 /tmp/id_repo"
|
||||||
|
- bash -c 'sftp -P 2022 -i /tmp/id_repo -o StrictHostKeyChecking=no root@161.97.102.153:/repo/incoming <<< $"put dist/*.deb"'
|
||||||
|
- bash -c 'ssh -i /tmp/id_repo root@161.97.102.153 -p 2022 "repo-process-deb trusty"'
|
||||||
|
- bash -c 'ssh -i /tmp/id_repo root@161.97.102.153 -p 2022 "rm -f /repo/incoming/*.deb"'
|
||||||
|
- name: buildrone
|
||||||
|
image: docker.io/hrfee/jfa-go-build-docker:latest
|
||||||
|
environment:
|
||||||
|
BUILDRONE_KEY:
|
||||||
|
from_secret: BUILDRONE_KEY
|
||||||
|
commands:
|
||||||
|
- wget https://builds.hrfee.pw/upload.py
|
||||||
|
- bash -c 'python3 upload.py https://builds.hrfee.pw hrfee jfa-go --upload ./dist/*.zip ./dist/*.rpm ./dist/*.apk --tag internal-git=true'
|
29
.woodpecker/git-docker.yaml
Normal file
29
.woodpecker/git-docker.yaml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
when:
|
||||||
|
- event: push
|
||||||
|
branch: main
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: docker.io/woodpeckerci/plugin-docker-buildx
|
||||||
|
secrets: [ BUILT_BY ]
|
||||||
|
settings:
|
||||||
|
username:
|
||||||
|
from_secret: DOCKER_USERNAME
|
||||||
|
password:
|
||||||
|
from_secret: DOCKER_TOKEN
|
||||||
|
repo: docker.io/hrfee/jfa-go
|
||||||
|
tags: unstable
|
||||||
|
registry: docker.io
|
||||||
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
||||||
|
build_args:
|
||||||
|
- BUILT_BY: $BUILT_BY
|
||||||
|
- name: buildrone
|
||||||
|
image: docker.io/python
|
||||||
|
environment:
|
||||||
|
BUILDRONE_KEY:
|
||||||
|
from_secret: BUILDRONE_KEY
|
||||||
|
commands:
|
||||||
|
- wget https://builds.hrfee.pw/upload.py
|
||||||
|
- pip install requests
|
||||||
|
- python upload.py https://builds.hrfee.pw hrfee jfa-go --tag docker-unstable=true
|
||||||
|
|
32
.woodpecker/stable-binary.yaml
Normal file
32
.woodpecker/stable-binary.yaml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
when:
|
||||||
|
- event: tag
|
||||||
|
branch: main
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: docker.io/hrfee/jfa-go-build-docker:latest
|
||||||
|
environment:
|
||||||
|
JFA_GO_BUILT_BY:
|
||||||
|
from_secret: BUILT_BY
|
||||||
|
commands:
|
||||||
|
- curl -sfL https://goreleaser.com/static/run > ../goreleaser
|
||||||
|
- chmod +x ../goreleaser
|
||||||
|
- ./scripts/version.sh ../goreleaser
|
||||||
|
- name: deb-repo
|
||||||
|
image: docker.io/hrfee/jfa-go-build-docker:latest
|
||||||
|
environment:
|
||||||
|
REPO_SSH_ID:
|
||||||
|
from_secret: REPO_SSH_ID
|
||||||
|
commands:
|
||||||
|
- sh -c "echo \"$REPO_SSH_ID\" > /tmp/id_repo && chmod 600 /tmp/id_repo"
|
||||||
|
- bash -c 'sftp -P 2022 -i /tmp/id_repo -o StrictHostKeyChecking=no root@161.97.102.153:/repo/incoming <<< $"put dist/*.deb"'
|
||||||
|
- bash -c 'ssh -i /tmp/id_repo root@161.97.102.153 -p 2022 "repo-process-deb trusty"'
|
||||||
|
- bash -c 'ssh -i /tmp/id_repo root@161.97.102.153 -p 2022 "rm -f /repo/incoming/*.deb"'
|
||||||
|
- name: buildrone
|
||||||
|
image: docker.io/hrfee/jfa-go-build-docker:latest
|
||||||
|
environment:
|
||||||
|
BUILDRONE_KEY:
|
||||||
|
from_secret: BUILDRONE_KEY
|
||||||
|
commands:
|
||||||
|
- wget https://builds.hrfee.pw/upload.py
|
||||||
|
- bash -c 'python3 upload.py https://builds.hrfee.pw hrfee jfa-go --tag internal=true'
|
29
.woodpecker/stable-docker.yaml
Normal file
29
.woodpecker/stable-docker.yaml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
when:
|
||||||
|
- event: tag
|
||||||
|
branch: main
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: docker.io/woodpeckerci/plugin-docker-buildx
|
||||||
|
secrets: [ BUILT_BY ]
|
||||||
|
settings:
|
||||||
|
username:
|
||||||
|
from_secret: DOCKER_USERNAME
|
||||||
|
password:
|
||||||
|
from_secret: DOCKER_TOKEN
|
||||||
|
repo: docker.io/hrfee/jfa-go
|
||||||
|
tags: latest
|
||||||
|
registry: docker.io
|
||||||
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
||||||
|
build_args:
|
||||||
|
- BUILT_BY: $BUILT_BY
|
||||||
|
- name: buildrone
|
||||||
|
image: docker.io/python
|
||||||
|
environment:
|
||||||
|
BUILDRONE_KEY:
|
||||||
|
from_secret: BUILDRONE_KEY
|
||||||
|
commands:
|
||||||
|
- wget https://builds.hrfee.pw/upload.py
|
||||||
|
- pip install requests
|
||||||
|
- python upload.py https://builds.hrfee.pw hrfee jfa-go --tag docker-stable=true
|
||||||
|
|
18
Dockerfile
18
Dockerfile
@ -1,18 +1,22 @@
|
|||||||
FROM --platform=$BUILDPLATFORM golang:latest AS support
|
# Use this instead if hrfee/jfa-go-build-docker doesn't support your architecture
|
||||||
|
# FROM --platform=$BUILDPLATFORM golang:latest AS support
|
||||||
|
FROM --platform=$BUILDPLATFORM hrfee/jfa-go-build-docker AS support
|
||||||
|
|
||||||
COPY . /opt/build
|
COPY . /opt/build
|
||||||
|
|
||||||
RUN apt-get update -y \
|
# Uncomment this if hrfee/jfa-go-build-docker doesn't support your architecture
|
||||||
&& apt-get install build-essential python3-pip curl software-properties-common sed -y \
|
# RUN apt-get update -y \
|
||||||
&& (curl -sL https://deb.nodesource.com/setup_current.x | bash -) \
|
# && apt-get install build-essential python3-pip -y \
|
||||||
&& apt-get install nodejs \
|
# && (curl -sL https://deb.nodesource.com/setup_current.x | bash -) \
|
||||||
&& (cd /opt/build; make configuration npm email typescript variants-html bundle-css inline-css swagger copy INTERNAL=off GOESBUILD=on) \
|
# && apt-get install nodejs
|
||||||
|
RUN (cd /opt/build; make configuration npm email typescript variants-html bundle-css inline-css swagger copy INTERNAL=off GOESBUILD=on) \
|
||||||
&& sed -i 's#id="password_resets-watch_directory" placeholder="/config/jellyfin"#id="password_resets-watch_directory" value="/jf" disabled#g' /opt/build/build/data/html/setup.html
|
&& sed -i 's#id="password_resets-watch_directory" placeholder="/config/jellyfin"#id="password_resets-watch_directory" value="/jf" disabled#g' /opt/build/build/data/html/setup.html
|
||||||
|
|
||||||
|
|
||||||
FROM --platform=$BUILDPLATFORM golang:latest AS build
|
FROM --platform=$BUILDPLATFORM golang:latest AS build
|
||||||
ARG TARGETARCH
|
ARG TARGETARCH
|
||||||
ENV GOARCH=$TARGETARCH
|
ENV GOARCH=$TARGETARCH
|
||||||
|
ARG BUILT_BY
|
||||||
|
ENV BUILTBY=$BUILT_BY
|
||||||
|
|
||||||
COPY --from=support /opt/build /opt/build
|
COPY --from=support /opt/build /opt/build
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user