Skip to content

Commit

Permalink
testRustSlint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andreriesco committed Feb 9, 2024
1 parent a4d2323 commit 449da2e
Showing 1 changed file with 49 additions and 9 deletions.
58 changes: 49 additions & 9 deletions rustConsole/.vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,7 @@
"cargo",
"build",
"--target",
"aarch64-unknown-linux-gnu",
"&&",
"mkdir",
"-p",
"executable-arm64",
"&&",
"cp",
"target/aarch64-unknown-linux-gnu/debug/__change__",
"executable-arm64",
"aarch64-unknown-linux-gnu"
],
"problemMatcher": [
{
Expand All @@ -81,6 +73,29 @@
"build-container-image-sdk-arm64"
]
},
{
"label": "copy-debug-executable-arm64",
"detail": "",
"hide": true,
"command": "mkdir",
"type": "shell",
"args": [
"-p",
"executable-arm64",
"&&",
"cp",
"target/aarch64-unknown-linux-gnu/debug/__change__",
"executable-arm64",
],
"icon": {
"id": "flame",
"color": "terminal.ansiYellow"
},
"dependsOrder": "sequence",
"dependsOn": [
"build-debug-arm64"
]
},
{
"label": "deploy-torizon-arm64",
"detail": "",
Expand All @@ -96,6 +111,7 @@
"copy-docker-compose",
"pre-cleanup",
"build-debug-arm64",
"copy-debug-executable-arm64",
"build-container-torizon-debug-arm64",
"push-container-torizon-debug-arm64",
"pull-container-torizon-debug-arm64",
Expand Down Expand Up @@ -158,6 +174,29 @@
"build-container-image-sdk-arm"
]
},
{
"label": "copy-debug-executable-arm",
"detail": "",
"hide": true,
"command": "mkdir",
"type": "shell",
"args": [
"-p",
"executable-arm",
"&&",
"cp",
"target/armv7-unknown-linux-gnueabihf/debug/__change__",
"executable-arm",
],
"icon": {
"id": "flame",
"color": "terminal.ansiYellow"
},
"dependsOrder": "sequence",
"dependsOn": [
"build-debug-arm"
]
},
{
"label": "deploy-torizon-arm",
"detail": "",
Expand All @@ -173,6 +212,7 @@
"copy-docker-compose",
"pre-cleanup",
"build-debug-arm",
"copy-debug-executable",
"build-container-torizon-debug-arm",
"push-container-torizon-debug-arm",
"pull-container-torizon-debug-arm",
Expand Down

0 comments on commit 449da2e

Please sign in to comment.