.drone.yml
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
ale 2024-11-02 01:15:58 +01:00
parent 357246b349
commit a76d448897

38
.drone.yml Normal file
View File

@ -0,0 +1,38 @@
kind: pipeline
name: code-build-linux-amd64
type: docker
platform:
os: linux
arch: arm64
steps:
- name: build
image: docker:dind
privileged: true
environment:
USER:
from_secret: user
PASS:
from_secret: pass
REGISTRY:
from_secret: registry
volumes:
- 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
- docker buildx build --platform amd64 -t $REGISTRY/docker-onnx-converter .
- docker push $REGISTRY/docker-onnx-converter
- docker tag $REGISTRY/docker-onnx-converter $REGISTRY/docker-onnx-converter:amd64
- docker push $REGISTRY/docker-onnx-converter:amd64
when:
event:
- push
- tag
volumes:
- name: dockersock
host:
path: /var/run/docker.sock