Skip to content

Commit

Permalink
tasks: Add the missing gpu --build-arg for the SDK containers
Browse files Browse the repository at this point in the history
Signed-off-by: Andre Riesco <[email protected]>
  • Loading branch information
andreriesco committed Oct 16, 2023
1 parent a5cd4b8 commit a614d22
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions assets/tasks/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,9 @@
"-t",
"cross-toolchain-arm64-__container__",
"--build-arg",
"IMAGE_ARCH=arm64"
"IMAGE_ARCH=arm64",
"--build-arg",
"GPU=${config:torizon_gpu}"
],
"problemMatcher": [
"$gcc"
Expand All @@ -891,7 +893,9 @@
"-t",
"cross-toolchain-arm-__container__",
"--build-arg",
"IMAGE_ARCH=arm"
"IMAGE_ARCH=arm",
"--build-arg",
"GPU=${config:torizon_gpu}"
],
"problemMatcher": [
"$gcc"
Expand All @@ -917,7 +921,9 @@
"-t",
"cross-toolchain-amd64-__container__",
"--build-arg",
"IMAGE_ARCH=amd64"
"IMAGE_ARCH=amd64",
"--build-arg",
"GPU=${config:torizon_gpu}"
],
"problemMatcher": [
"$gcc"
Expand All @@ -943,7 +949,9 @@
"-t",
"cross-toolchain-riscv64-__container__",
"--build-arg",
"IMAGE_ARCH=riscv64"
"IMAGE_ARCH=riscv64",
"--build-arg",
"GPU=${config:torizon_gpu}"
],
"problemMatcher": [
"$gcc"
Expand Down

0 comments on commit a614d22

Please sign in to comment.