drop more alg

This commit is contained in:
Fam Zheng 2025-04-24 22:38:00 +01:00
parent b9e355438a
commit cec6f1c534
2 changed files with 0 additions and 17 deletions

View File

@ -19,23 +19,8 @@ test:
- source scripts/dev-setup
script:
- make opencv -j$(nproc --ignore=2)
- make -C alg qrtool -j$(nproc --ignore=2)
- make test
build-alg:
stage: test-and-build
except:
- main
tags:
- derby
script:
- make opencv -j$(nproc --ignore=2)
- make build/alg/qrtool -j$(nproc --ignore=2)
artifacts:
paths:
- build
- alg/qrtool
build-web:
stage: test-and-build
except:
@ -61,7 +46,6 @@ build-docker:
- make docker-push
dependencies:
- build-web
- build-alg
except:
- main

View File

@ -4,7 +4,6 @@ RUN apt-get update -y && DEBIAN_FRONTEND=noninteractive apt-get install -y $(cat
RUN pip3 install --no-cache-dir torch==1.13.0 torchvision==0.14.0 torchaudio==0.13.0
ADD requirements.txt requirements.txt
RUN pip3 install --no-cache-dir -r requirements.txt
ADD alg /emblem/alg
ADD api /emblem/api
ADD web /emblem/web
RUN cd /emblem/api && ./manage.py collectstatic --noinput