Compare commits

...

2 Commits

Author SHA1 Message Date
Joe Bellus 87088a9393 Merge branch 'main' of https://git.5sigma.io/vade/app
continuous-integration/drone/push Build is failing Details
2022-07-28 19:08:10 -04:00
Joe Bellus 92797a93f8 Added pipelines for ui build to drone configuration 2022-07-28 19:06:51 -04:00
1 changed files with 60 additions and 0 deletions

60
drone.yml Normal file
View File

@ -0,0 +1,60 @@
kind: pipeline
name: main-pipeline
platform:
os: linux
arch: amd64
steps:
- name: build-ui
image: node:16.13-slim
volumes:
- name: dist
path: dist/
commands:
- apt-get update
- apt-get -y install libssl-dev
- npm install
- npm run build
- name: test
image: rust
commands:
- cargo test
- name: build
image: rust
volumes:
- name: temp
path: /app
- name: dist
path: dist/
commands:
- cargo build --release
- cp target/release/vade /app/vade
when:
event:
- promote
- name: stage-deploy
image: plugins/docker
privileged: true
volumes:
- name: temp
path: /app
settings:
username:
from_secret: CONTAINER_USER
password:
from_secret: CONTAINER_PASSWORD
registry: git.5sigma.io
context: /app
repo: git.5sigma.io/vade/app
tags: latest
when:
event:
- promote
target:
- staging
- production
volumes:
- name: temp
temp: {}
- name: dist
temp: {}