From 1622618184f5c1982e766a72f785f31c6113efef Mon Sep 17 00:00:00 2001 From: Quentin VIGNAUD Date: Mon, 6 Oct 2025 11:30:47 +0200 Subject: [PATCH] Fix syntax --- .melodium-ci/github/ci.mel | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.melodium-ci/github/ci.mel b/.melodium-ci/github/ci.mel index 64005dfe..cd765759 100644 --- a/.melodium-ci/github/ci.mel +++ b/.melodium-ci/github/ci.mel @@ -100,7 +100,7 @@ treatment buildTestAya[logger: Logger]( target = target_arch ) build: runAction[contexts = contexts, logger = logger]( - working_directory = |format("/tmp/{arch}", |entry("arch", target_arch)), + working_directory = |wrap(|format("/tmp/{arch}", |entry("arch", target_arch))), commands = ${ set -euxo pipefail cargo hack build --all-targets --feature-powerset \ @@ -115,7 +115,7 @@ cargo hack build --all-targets --feature-powerset \ name = "build" ) test: runAction[contexts = contexts, logger = logger]( - working_directory = |format("/tmp/{arch}", |entry("arch", target_arch)), + working_directory = |wrap(|format("/tmp/{arch}", |entry("arch", target_arch))), commands = ${set -euxo pipefail cargo hack test --all-targets --feature-powerset \ --exclude aya-ebpf \ @@ -138,7 +138,7 @@ cargo hack test --all-targets --feature-powerset \ name = "test" ) doctests: runAction[contexts = contexts, logger = logger]( - working_directory = |format("/tmp/{arch}", |entry("arch", target_arch)), + working_directory = |wrap(|format("/tmp/{arch}", |entry("arch", target_arch))), commands = ${ set -euxo pipefail cargo hack test --doc --feature-powerset \