libretranslate-api/.drone.yml
ale 836233aba2
All checks were successful
continuous-integration/drone/push Build is passing
build-arm64
2024-10-08 14:43:26 +02:00

72 lines
1.7 KiB
YAML

kind: pipeline
name: build-linux-arm64-amd64
type: docker
platform:
os: linux
arch: arm64
clone:
disable: true
steps:
- name: build-arm64
image: docker:dind
privileged: true
environment:
USER:
from_secret: user
PASS:
from_secret: pass
REGISTRY:
from_secret: registry
volumes:
- name: etcdocker
path: /etc/docker
- name: dockersock
path: /var/run/docker.sock
commands:
- docker login -u $USER -p $PASS $REGISTRY
- git clone --recursive https://git.manalejandro.com/ale/libretranslate-api .
- cd LibreTranslate && docker buildx build --build-arg with_models=true --platform arm64 -t $REGISTRY/libretranslate-api:arm64 -f ./docker/Dockerfile .
- docker push $REGISTRY/libretranslate-api:arm64
when:
event:
- push
- tag
- name: build-amd64
image: docker:dind
privileged: true
environment:
USER:
from_secret: user
PASS:
from_secret: pass
REGISTRY:
from_secret: registry
volumes:
- name: etcdocker
path: /etc/docker
- name: dockersock
path: /var/run/docker.sock
commands:
- docker login -u $USER -p $PASS $REGISTRY
- docker run --rm --privileged $REGISTRY/qemu-user-static --reset -p yes
- cd LibreTranslate && docker buildx build --build-arg with_models=true --platform amd64 -t $REGISTRY/libretranslate-api -f ./docker/Dockerfile .
- docker push $REGISTRY/libretranslate-api
- docker tag $REGISTRY/libretranslate-api $REGISTRY/libretranslate-api:amd64
- docker push $REGISTRY/libretranslate-api:amd64
when:
event:
- push
- tag
volumes:
- name: dockersock
host:
path: /var/run/docker.sock
- name: etcdocker
host:
path: /etc/docker