test ci!
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
hexlocation 2024-12-26 13:26:45 +01:00
parent bf1881ccb5
commit 5f54220113
Signed by: hex
GPG key ID: A19EFFAAF8C00FCF
3 changed files with 61 additions and 2 deletions

18
.woodpecker.yaml Normal file
View file

@ -0,0 +1,18 @@
when:
branch: ["main"]
event: ["push", "manual"]
steps:
- name: build
image: woodpeckerci/plugin-docker-buildx
settings:
repo: git.iwakura.rip/hex/gw
platforms: linux/amd64
dockerfile: Dockerfile
tags:
["${CI_COMMIT_BRANCH}-latest", "${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA}"]
username: hex
registry:
git.iwakura.rip
#insecure: true
password:
from_secret: gitpat

32
Dockerfile Normal file
View file

@ -0,0 +1,32 @@
FROM alpine:latest AS compile
RUN mkdir /build
WORKDIR /build
# Add edge repository
RUN echo -e "\nhttps://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
RUN apk update && \
apk add pnpm nodejs npm nim nimble go-task git build-base
ADD . .
RUN go-task docker-build-frontend
RUN go-task docker-build-backend
RUN echo $(pwd) $(ls)
FROM alpine:latest
WORKDIR /app
RUN apk update && \
apk add sqlite-dev
COPY --from=compile /build/gw /app/
COPY --from=compile /build/public /app/public
CMD ["/app/gw"]

View file

@ -4,7 +4,7 @@ tasks:
build-backend: build-backend:
cmds: cmds:
- rm gw - rm gw
- nimble c -d:usestd src/gw.nim -o:gw - nimble build
build-frontend: build-frontend:
dir: ./web dir: ./web
cmds: cmds:
@ -16,4 +16,13 @@ tasks:
dev-frontend: dev-frontend:
dir: ./web dir: ./web
cmds: cmds:
- pnpm run dev - pnpm run dev
docker-build-frontend:
dir: ./web
cmds:
- pnpm install
- pnpm run build
docker-build-backend:
cmds:
- rm gw | echo "has not been compiled before"
- nimble -y build --gcc.path:"/usr/bin" --gcc.exe:"x86_64-alpine-linux-musl-gcc" --gcc.linkerexe:"x86_64-alpine-linux-musl-gcc" --gcc.options.always:"-static" --define:release --threads:on