VirtWebRemote/.drone.yml

51 lines
915 B
YAML
Raw Normal View History

2024-05-06 19:31:37 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: frontend_build
2024-05-14 00:35:08 +00:00
image: node:22
2024-05-06 19:31:37 +00:00
volumes:
- name: frontend_app
path: /tmp/frontend_build
commands:
- cd remote_frontend
- npm install
- npm run build
- mv dist /tmp/frontend_build
- name: backend_check
image: rust
volumes:
- name: rust_registry
path: /usr/local/cargo/registry
commands:
- rustup component add clippy
- cd remote_backend
- cargo clippy -- -D warnings
- cargo test
- name: backend_compile
image: rust
volumes:
- name: rust_registry
path: /usr/local/cargo/registry
- name: frontend_app
path: /tmp/frontend_build
depends_on:
- backend_check
- frontend_build
commands:
- cd remote_backend
- mv /tmp/frontend_build/dist static
- cargo build --release
- ls -lah target/release/remote_backend
volumes:
- name: rust_registry
temp: {}
- name: frontend_app
temp: {}