lights/.drone.yml
Andre Henriques b61fd4694a
Some checks failed
continuous-integration/drone/push Build is failing
remove cd
2023-03-18 11:53:25 +00:00

20 lines
281 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 src"
- su andr3 -c "cargo build --target=armv7-unknown-linux-gnueabihf"
node:
lights: builder
...