File tree Expand file tree Collapse file tree 2 files changed +37
-1
lines changed Expand file tree Collapse file tree 2 files changed +37
-1
lines changed Original file line number Diff line number Diff line change 1- .vscode
1+ .vscode /*
2+ ! important .vscode /tasks.json
3+
Original file line number Diff line number Diff line change 1+ {
2+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3+ // for the documentation about the tasks.json format
4+ "version" : " 2.0.0" ,
5+ "tasks" : [
6+ {
7+ "label" : " echoTest" ,
8+ "type" : " shell" ,
9+ "command" : " echo 'Hello taskrunner test good.'" ,
10+ "group" : {
11+ "kind" : " build" ,
12+ "isDefault" : true
13+ }
14+ },
15+ {
16+ "label" : " buildPiImage" ,
17+ "type" : " shell" ,
18+ "command" : " docker build -t pidaq:v1 docker/." ,
19+ "group" : {
20+ "kind" : " build" ,
21+ "isDefault" : true
22+ }
23+ },
24+ {
25+ "label" : " compileRunPiHelloWorld" ,
26+ "type" : " shell" ,
27+ "command" : " docker run -it -v /c/Hyperloop/testing-software/Pidaq:/home/data --entrypoint helloTest.sh pidaq:v1" ,
28+ "group" : {
29+ "kind" : " build" ,
30+ "isDefault" : true
31+ }
32+ }
33+ ]
34+ }
You can’t perform that action at this time.
0 commit comments