lights/.drone.yml
Andre Henriques bb0d463440
Some checks failed
continuous-integration/drone/push Build is failing
fixed drone ci
2023-03-18 12:53:49 +00:00

22 lines
496 B
YAML

---
kind: pipeline
type: exec
name: Build and deploy
steps:
- name: build
commands:
- rustup default stable
- rustup target add armv7-unknown-linux-gnueabihf
- rustup show
- cargo build --target=armv7-unknown-linux-gnueabihf
- name: deploy
commands:
- curl aether:3000/quit
- scp target/armv7-unknown-linux-gnueabihf/debug/neolights aether:~/new-neoligths
- ssh aether "doas systemctl restart lights"
- curl aether:3000/start/work
node:
lights: builder
...