32 lines
401 B
YAML
32 lines
401 B
YAML
#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
|
|
|
|
kind: pipeline
|
|
type: exec
|
|
name: Build
|
|
|
|
steps:
|
|
- name: test
|
|
commands:
|
|
- whoami
|
|
- cargo build --target=armv7-unknown-linux-gnueabihf
|
|
|
|
node:
|
|
lights: builder
|