Update ci pipelines
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Dominic Grimm 2023-03-10 19:13:11 +01:00
parent 8d3f80bbbc
commit 9b155b0719
Signed by: dergrimm
GPG Key ID: 12EFFCAEA9E620BF
1 changed files with 26 additions and 1 deletions

View File

@ -34,6 +34,26 @@ volumes:
host:
path: /tmp/cache
---
kind: pipeline
type: docker
name: auth
steps:
- name: build
image: tmaier/docker-compose
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- cd auth/ && cargo clippy
- docker-compose build auth
volumes:
- name: dockersock
host:
path: /var/run/docker.sock
---
kind: pipeline
type: docker
@ -85,10 +105,13 @@ steps:
- name: dockersock
path: /var/run/docker.sock
commands:
- docker-compose build backend
- docker-compose build x-backend
depends_on:
- ameba
depends_on:
- auth
volumes:
- name: dockersock
host:
@ -109,6 +132,7 @@ steps:
- name: dockersock
path: /var/run/docker.sock
commands:
- cd frontend/ && cargo clippy
- docker-compose build frontend
volumes:
@ -173,6 +197,7 @@ volumes:
depends_on:
- default
- auth
- backend
- frontend