lights/.drone.yml

38 lines
552 B
YAML
Raw Normal View History

2023-03-18 10:45:02 +00:00
#kind: pipeline
#type: exec
#name: default
#
#steps:
# - name: default
# commands:
# - echo hello world
# - name: default
# commands:
# - echo hello world
#
#trigger:
# branch:
# - main
#
##node:
# #lights: builder
2023-03-16 23:47:26 +00:00
kind: pipeline
2023-03-18 11:28:46 +00:00
type: exec
2023-03-18 11:36:59 +00:00
name: Build
2023-03-16 23:47:26 +00:00
steps:
2023-03-18 11:41:47 +00:00
- name: build
2023-03-17 00:16:45 +00:00
commands:
2023-03-18 11:42:45 +00:00
- ls
- pwd
2023-03-18 11:41:05 +00:00
- chown andr3:andr3 -R .
2023-03-18 11:46:33 +00:00
- su andr3 -c "ll"
- su andr3 -c "pwd"
2023-03-18 11:49:20 +00:00
- su andr3 -c "cd src"
- su andr3 -c "ll"
2023-03-18 11:41:47 +00:00
- su andr3 -c "cargo build --target=armv7-unknown-linux-gnueabihf"
2023-03-18 11:15:51 +00:00
node:
lights: builder