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

This commit is contained in:
Dominic Grimm 2023-03-10 19:23:25 +01:00
parent fea214819f
commit 769e735938
Signed by: dergrimm
GPG Key ID: 12EFFCAEA9E620BF
1 changed files with 12 additions and 2 deletions

View File

@ -40,14 +40,19 @@ type: docker
name: auth
steps:
- name: clippy
image: docker.io/rust:1-alpine3.17
commands:
- cd auth/ && cargo clippy
- name: build
image: docker.io/docker
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- cd auth/ && cargo clippy
- docker-compose build auth
depends_on:
- clippy
volumes:
- name: dockersock
@ -126,14 +131,19 @@ type: docker
name: frontend
steps:
- name: clippy
image: docker.io/rust:1-alpine3.17
commands:
- cd frontend/ && cargo clippy
- name: build
image: docker.io/docker
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- cd frontend/ && cargo clippy
- docker-compose build frontend
depends_on:
- clippy
volumes:
- name: dockersock