Skip to content

Commit

Permalink
tasks: Add -nop to powershell calls
Browse files Browse the repository at this point in the history
Fix torizon#82

Signed-off-by: Matheus Castello <[email protected]>
  • Loading branch information
microhobby committed Nov 13, 2023
1 parent 4afd37f commit f75a38c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
9 changes: 9 additions & 0 deletions assets/tasks/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"cwd": "${workspaceFolder}"
},
"args": [
"-nop",
"${workspaceFolder}/.conf/projectUpdater.ps1",
"${workspaceFolder}",
"${workspaceFolderBasename}",
Expand Down Expand Up @@ -45,6 +46,7 @@
"cwd": "${workspaceFolder}"
},
"args": [
"-nop",
"${workspaceFolder}/.conf/projectUpdater.ps1",
"${workspaceFolder}",
"${workspaceFolderBasename}",
Expand Down Expand Up @@ -77,6 +79,7 @@
}
},
"args": [
"-nop",
"${workspaceFolder}/.conf/createDockerComposeProduction.ps1",
"${workspaceFolder}",
"${command:docker_registry}",
Expand Down Expand Up @@ -176,6 +179,7 @@
},
"args": [
"pwsh",
"-nop",
"./.conf/torizonIO.ps1",
"update",
"fleet",
Expand Down Expand Up @@ -366,6 +370,7 @@
"clear": false
},
"args": [
"-nop",
"${workspaceFolder}/.conf/shareWSLPorts.ps1",
"${workspaceFolder}"
],
Expand All @@ -389,6 +394,7 @@
"clear": false
},
"args": [
"-nop",
"${workspaceFolder}/.conf/checkDeps.ps1"
],
"dependsOrder": "sequence",
Expand All @@ -412,6 +418,7 @@
"clear": false
},
"args": [
"-nop",
"${workspaceFolder}/.conf/torizonPackages.ps1",
"${config:torizon_arch}"
],
Expand Down Expand Up @@ -1834,6 +1841,7 @@
}
},
"args": [
"-nop",
".conf/checkCIEnv.ps1"
],
"problemMatcher": [
Expand Down Expand Up @@ -1865,6 +1873,7 @@
}
},
"args": [
"-nop",
".conf/validateDepsRunning.ps1"
],
"problemMatcher": [
Expand Down
8 changes: 7 additions & 1 deletion tcb/.vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"cwd": "${workspaceFolder}"
},
"args": [
"-nop",
"${workspaceFolder}/.conf/projectUpdater.ps1",
"${workspaceFolder}",
"${workspaceFolderBasename}",
Expand Down Expand Up @@ -46,6 +47,7 @@
"cwd": "${workspaceFolder}"
},
"args": [
"-nop",
"${workspaceFolder}/.conf/projectUpdater.ps1",
"${workspaceFolder}",
"${workspaceFolderBasename}",
Expand Down Expand Up @@ -103,6 +105,7 @@
"clear": false
},
"args": [
"-nop",
"${workspaceFolder}/.conf/runContainerIfNotExists.ps1",
"-ContainerRuntime",
"docker",
Expand Down Expand Up @@ -132,6 +135,7 @@
"clear": false
},
"args": [
"-nop",
"${workspaceFolder}/.conf/shareWSLPorts.ps1"
],
"dependsOrder": "sequence",
Expand All @@ -155,6 +159,7 @@
"clear": false
},
"args": [
"-nop",
"${workspaceFolder}/.conf/checkDeps.ps1"
],
"dependsOrder": "sequence",
Expand Down Expand Up @@ -454,6 +459,7 @@
},
"args": [
"pwsh",
"-nop",
"./.conf/torizonIO.ps1",
"update",
"fleet",
Expand Down Expand Up @@ -526,7 +532,7 @@
"type": "pickString",
"description": "Container architecture",
"options": [
"linux/arm/v7",
"linux/arm/v7",
"linux/arm64"
]
},
Expand Down

0 comments on commit f75a38c

Please sign in to comment.