From e412c1d911b472f4ce6bc1e4dd441e5068e3e526 Mon Sep 17 00:00:00 2001 From: BjoernAtBosch Date: Thu, 4 Jul 2024 09:51:34 +0200 Subject: [PATCH] [Bugfix] VS Code task for Run SeatAdjuster in local runtime (#97) (#98) --- .velocitas-lock.json | 2 +- .velocitas.json | 2 +- .vscode/tasks.json | 2 +- build.sh | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.velocitas-lock.json b/.velocitas-lock.json index f216797..54e6f02 100644 --- a/.velocitas-lock.json +++ b/.velocitas-lock.json @@ -1,6 +1,6 @@ { "packages": { - "devenv-runtimes": "v4.0.3", + "devenv-runtimes": "v4.0.4", "devenv-devcontainer-setup": "v2.1.0", "devenv-github-templates": "v1.0.5", "devenv-github-workflows": "v6.0.4" diff --git a/.velocitas.json b/.velocitas.json index fef8536..dc33384 100644 --- a/.velocitas.json +++ b/.velocitas.json @@ -1,6 +1,6 @@ { "packages": { - "devenv-runtimes": "v4.0.3", + "devenv-runtimes": "v4.0.4", "devenv-devcontainer-setup": "v2.1.0", "devenv-github-templates": "v1.0.5", "devenv-github-workflows": "v6.0.4" diff --git a/.vscode/tasks.json b/.vscode/tasks.json index f933520..4acf3eb 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -30,7 +30,7 @@ "detail": "Starts the SeatAdjuster under development", "type": "shell", "command": [ - "velocitas exec runtime-local run-vehicle-app python3 ${workspaceFolder}/examples/seat-adjuster/src/main.py" + "velocitas exec runtime-local run-vehicle-app ${workspaceFolder}/build/bin/example-seatadjusterapp" ], "presentation": { "panel": "dedicated", diff --git a/build.sh b/build.sh index bd0e2ae..89894a6 100755 --- a/build.sh +++ b/build.sh @@ -106,6 +106,7 @@ echo "Build variant ${BUILD_VARIANT}" echo "Build arch ${BUILD_ARCH}" echo "Host arch ${HOST_ARCH}" echo "Build target ${BUILD_TARGET}" +echo "Build SDK tests ${SDK_BUILD_TESTS}" echo "Build SDK examples ${SDK_BUILD_EXAMPLES}" echo "Static build ${STATIC_BUILD}" echo "Coverage ${GEN_COVERAGE}"