Compare commits

...

2 Commits

Author SHA1 Message Date
d2f855881c Make it a little faster, queue is in sqlite now, fix db bug and more
All checks were successful
Build and Deploy on Tag / 🔨 Build (push) Successful in 10s
2026-06-25 15:43:00 -05:00
454a259e37 Make it a little faster, queue is in sqlite now, fix db bug and more
Some checks failed
Build and Deploy on Tag / 🔨 Build (push) Failing after 8s
2026-06-25 15:41:26 -05:00
2 changed files with 10 additions and 21 deletions

View File

@@ -12,24 +12,8 @@ env:
RESULT_IMAGE_NAME: tesses50/tytd2025 RESULT_IMAGE_NAME: tesses50/tytd2025
jobs: jobs:
build-ppc:
name: "🔨 Build for PowerPC"
runs-on: ubuntu-latest
container:
image: git.tesses.org/tesses50/linux-ppc:latest
steps:
- uses: actions/checkout@v4
- run: bash build-for-ppc.sh
- uses: akkuman/gitea-release-action@v1
env:
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
with:
prerelease: true
files: |-
artifacts/**
build-packages: build-packages:
name: "🔨 Build for everything else" name: "🔨 Build"
runs-on: fw13-ubuntu-latest runs-on: fw13-ubuntu-latest
container: container:

View File

@@ -1,9 +1,14 @@
FROM git.tesses.org/tesses50/crosslang-withshell:latest FROM git.tesses.org/tesses50/crosslang-withshell:latest AS build
RUN mkdir /app
COPY Tesses.YouTubeDownloader.Server/bin/ /app COPY ./ /src/
RUN cd /src/Tesses.YouTubeDownloader.Server && crosslang build && cd bin && mv Tesses.YouTubeDownloader.Server-*.crvm tytd2025.crvm
FROM git.tesses.org/tesses50/crosslang:latest
COPY --from=build /src/Tesses.YouTubeDownloader.Server/bin/ /app
WORKDIR /data WORKDIR /data
ENV TYTDDIR=/data ENV TYTDDIR=/data
EXPOSE 3255 EXPOSE 3255
ENTRYPOINT ["crossvm","/app/Tesses.YouTubeDownloader.Server-1.0.0.0-prod.crvm","--port=3255"] ENTRYPOINT ["crossvm","/app/tytd2025.crvm","--port=3255"]