annotate lib/devices_shared/tasks.py @ 728:17ff9322328b

an attempt as ESP-IDF build (doesn't work) calling a nim-generated main function (also doesn't work) Ignore-this: d43cda6cf70930a20864cae066f11739
author drewp@bigasterisk.com
date Thu, 23 Jan 2020 23:46:34 -0800
parents bb6b4988dd75
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
533
bb6b4988dd75 make devices_shared into lib
drewp@bigasterisk.com
parents:
diff changeset
1 from invoke import task
bb6b4988dd75 make devices_shared into lib
drewp@bigasterisk.com
parents:
diff changeset
2
bb6b4988dd75 make devices_shared into lib
drewp@bigasterisk.com
parents:
diff changeset
3 import sys
bb6b4988dd75 make devices_shared into lib
drewp@bigasterisk.com
parents:
diff changeset
4 sys.path.append('/my/proj/release')
bb6b4988dd75 make devices_shared into lib
drewp@bigasterisk.com
parents:
diff changeset
5 from release import local_release
bb6b4988dd75 make devices_shared into lib
drewp@bigasterisk.com
parents:
diff changeset
6
bb6b4988dd75 make devices_shared into lib
drewp@bigasterisk.com
parents:
diff changeset
7 @task
bb6b4988dd75 make devices_shared into lib
drewp@bigasterisk.com
parents:
diff changeset
8 def release(ctx):
bb6b4988dd75 make devices_shared into lib
drewp@bigasterisk.com
parents:
diff changeset
9 local_release(ctx)