From d2bdeddeb9f7b6a03757e01a73e191af4e26476f Mon Sep 17 00:00:00 2001 From: Quentin VIGNAUD Date: Mon, 6 Oct 2025 11:36:43 +0200 Subject: [PATCH] Try fix according to gha file location rules --- .melodium-ci/github/ci.mel | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.melodium-ci/github/ci.mel b/.melodium-ci/github/ci.mel index cd765759..be402028 100644 --- a/.melodium-ci/github/ci.mel +++ b/.melodium-ci/github/ci.mel @@ -87,20 +87,20 @@ treatment buildTestAya[logger: Logger]( github_contexts = github_contexts ) step0: checkout[contexts = contexts, logger = logger]( - path = |format("/tmp/{arch}", |entry("arch", target_arch)) + path = |format("${{{{ github.workspace }}}}/{arch}", |entry("arch", target_arch)) ) step1: RefStablerustToolchain[contexts = contexts, logger = logger]( targets = target_arch ) step2: rustCache[contexts = contexts, logger = logger]( - workspaces = |format("/tmp/{arch}", |entry("arch", target_arch)) + workspaces = |format("${{{{ github.workspace }}}}/{arch}", |entry("arch", target_arch)) ) step3: RefCargoHackinstallAction[contexts = contexts, logger = logger]() step4: setupCrossToolchainAction[contexts = contexts, logger = logger]( target = target_arch ) build: runAction[contexts = contexts, logger = logger]( - working_directory = |wrap(|format("/tmp/{arch}", |entry("arch", target_arch))), + working_directory = |wrap(|format("${{{{ github.workspace }}}}/{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 = |wrap(|format("/tmp/{arch}", |entry("arch", target_arch))), + working_directory = |wrap(|format("${{{{ github.workspace }}}}/{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 = |wrap(|format("/tmp/{arch}", |entry("arch", target_arch))), + working_directory = |wrap(|format("${{{{ github.workspace }}}}/{arch}", |entry("arch", target_arch))), commands = ${ set -euxo pipefail cargo hack test --doc --feature-powerset \