You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Farshid Tavakolizadeh edited this page Feb 25, 2019
·
1 revision
Deploy Only
Install/launch on targets.
version: 0.5source:
# zip: paths:
- packagedeploy:
# How to install the package(s)install:
commands:
- go build package/count_to_three.go# How to launch the application(s)run:
commands:
- ./count_to_threeautoRestart: true# Which target devices should receive the packagetarget:
ids:
tags:
- turtlebot
- dev# Whether the device should send all standard output (true) or just status infodebug: true
Build and Deploy
Build and then install/launch on targets.
version: 0.5source:
# zip: paths:
- package# Deployment stagesbuild:
# How to build the package(s)commands:
- go build -v package/count_to_three.go# What files or directories should be extractedartifacts:
- count_to_three# Which host device should perform the buildhost: my-laptopdeploy:
# How to install the package(s)install:
commands:
- chmod +x count_to_three# How to launch the application(s)run:
commands:
- ./count_to_threeautoRestart: true# Which target devices should receive the packagetarget:
ids:
tags:
- turtlebot
- dev# Whether the device should send all standard output (true) or just status infodebug: true