Compare commits

...

2 commits

Author SHA1 Message Date
d30f0f01c5
Switch to gitea actions
All checks were successful
/ Building (push) Successful in 3m25s
Signed-off-by: baalajimaestro <baalajimaestro@ptr.moe>
2024-09-08 11:22:19 +05:30
fa5df79743
Update dependencies
Signed-off-by: baalajimaestro <baalajimaestro@ptr.moe>
2024-09-08 11:19:13 +05:30
4 changed files with 32 additions and 17 deletions

View file

@ -0,0 +1,28 @@
on:
push:
jobs:
Building:
runs-on: slave
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Startup DIND
run: /dockerd-entrypoint.sh dockerd &
shell: bash
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: git.ptr.moe
username: ${{ gitea.repository_owner }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build & Push
uses: docker/build-push-action@master
with:
push: true
context: .
platforms: linux/amd64
tags: git.ptr.moe/baalajimaestro/nim-censor-bot:latest

View file

@ -1,13 +0,0 @@
when:
- event: push
steps:
- name: Build & Push
image: git.baalajimaestro.me/baalajimaestro/build-runner
commands:
- /dockerd-entrypoint.sh dockerd 2&> /dev/null &
- echo $DOCKER_PASSWORD | docker login git.baalajimaestro.me --username ${CI_REPO_OWNER} --password-stdin
- docker build . -t git.baalajimaestro.me/baalajimaestro/nim-censor-bot:latest
- docker push git.baalajimaestro.me/baalajimaestro/nim-censor-bot:latest
secrets: [ docker_password ]
privileged: true

View file

@ -1,4 +1,4 @@
FROM nimlang/nim:2.0.2-alpine as builder FROM nimlang/nim:2.0.8-alpine as builder
RUN apk update && apk add autoconf \ RUN apk update && apk add autoconf \
automake \ automake \
@ -14,7 +14,7 @@ RUN apk update && apk add autoconf \
sqlite-static sqlite-static
ENV LIBRESSL_VERSION v3.8.3 ENV LIBRESSL_VERSION v3.9.2
# Compile LibreSSL Portable from source # Compile LibreSSL Portable from source
RUN git clone https://github.com/libressl/portable --depth=1 -b ${LIBRESSL_VERSION} libressl && \ RUN git clone https://github.com/libressl/portable --depth=1 -b ${LIBRESSL_VERSION} libressl && \

View file

@ -11,5 +11,5 @@ bin = @["nim_censor_bot"]
# Dependencies # Dependencies
requires "nim >= 2.0.0" requires "nim >= 2.0.0"
requires "telebot >= 2024.02.20" requires "telebot >= 2024.05.05"
requires "norm >= 2.8.2" requires "norm >= 2.8.3"