lights/.drone.yml
Andre Henriques b9978394c2
Some checks failed
continuous-integration/drone/push Build is failing
reverted .drone.yml
2023-03-18 11:52:19 +00:00

23 lines
351 B
YAML

---
kind: pipeline
type: exec
name: Build
steps:
- name: build
commands:
- ls
- pwd
- chown andr3:andr3 -R .
- ls -al
- ls -al src
- su andr3 -c "ll"
- su andr3 -c "pwd"
- su andr3 -c "cd src"
- su andr3 -c "ll"
- su andr3 -c "cargo build --target=armv7-unknown-linux-gnueabihf"
node:
lights: builder
...