Pack for all arches

This commit is contained in:
2025-05-08 14:43:45 -05:00
parent 1e123f5a20
commit 7659693463
3 changed files with 45 additions and 23 deletions

View File

@ -1,3 +1,5 @@
FROM onedev.site.tesses.net/dependencies/dependencies:latest
COPY build/out /
COPY . /usr/src
WORKDIR /usr/src
RUN mkdir build && cd build && cmake -S .. -B . -DCMAKE_INSTALL_PREFIX=/usr && make -j12 && make install && cpack -G DEB && curl --user $GITEA_USERPASS --upload-file TessesFramework-1.0.0-Linux.deb https://gitea-pkg.site.tesses.net/api/packages/tesses50/debian/pool/noble/main/upload ; true && cd .. && rm -rf build