mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 23:09:10 +00:00
* Use libmagic to identify file types. * Fix mime array for database querying. * go mod tidy * Fix typo * Another fix for the scheduled image build workflow for tag case (#1137) * Try to fix the incorrect tag processing * more debug code * try with context=git * hopefully, final debug * the final commit with no debug code --------- Co-authored-by: Konstantin Koval * Add benchmark. * rollback workflows. * Fix AI comments. * Build image. * Fix AI comments. * Fix AI comments. * Rollback build workflow. --------- Co-authored-by: Kostiantyn <32730812+kkovaletp@users.noreply.github.com>
19 lines
724 B
Bash
Executable File
19 lines
724 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
: ${DEB_HOST_ARCH=`dpkg --print-architecture`}
|
|
echo Arch: ${DEB_HOST_ARCH}
|
|
|
|
# Install go-heif dependencies
|
|
apt-get install -y libdav1d-dev:${DEB_HOST_ARCH} libde265-dev:${DEB_HOST_ARCH} libjpeg62-turbo-dev:${DEB_HOST_ARCH} libopenh264-dev:${DEB_HOST_ARCH} libpng-dev:${DEB_HOST_ARCH} libnuma-dev:${DEB_HOST_ARCH} zlib1g-dev:${DEB_HOST_ARCH}
|
|
|
|
# Install go-face dependencies
|
|
apt-get install -y \
|
|
libdlib-dev:${DEB_HOST_ARCH} libblas-dev:${DEB_HOST_ARCH} libatlas-base-dev:${DEB_HOST_ARCH} liblapack-dev:${DEB_HOST_ARCH} libjpeg62-turbo-dev:${DEB_HOST_ARCH}
|
|
|
|
# Install gomagic dependencies
|
|
apt-get install -y libmagic-dev:${DEB_HOST_ARCH}
|
|
|
|
# Install tools for development
|
|
apt-get install -y reflex sqlite3
|