fediblock-instance/.drone.yml
ale 886953f221
Some checks failed
continuous-integration/drone/push Build is failing
.drone.yml
2024-09-17 04:58:18 +02:00

47 lines
905 B
YAML

kind: pipeline
name: code-analysis-build-linux-amd64
type: docker
platform:
os: linux
arch: arm64
steps:
- name: code-analysis
image: registry.manalejandro.com/aosapps/drone-sonar-plugin
settings:
sonar_host:
from_secret: sonar_host
sonar_token:
from_secret: sonar_token
- 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
- name: usrbin
path: /usr/bin
commands:
- docker login -u $USER -p $PASS $REGISTRY
- docker buildx build --platform amd64 -t $REGISTRY/fediblock-instance .
- docker push $REGISTRY/fediblock-instance
when:
event:
- push
- tag
volumes:
- name: dockersock
host:
path: /var/run/docker.sock
- name: usrbin
host:
path: /usr/bin