From 9a6f7590d64c4a7bd4bd54978a07f04a31a4713f Mon Sep 17 00:00:00 2001 From: Quentin VIGNAUD Date: Fri, 5 Dec 2025 17:18:15 +0100 Subject: [PATCH] Avoid using specific env --- .melodium-ci/lib-root.mel | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.melodium-ci/lib-root.mel b/.melodium-ci/lib-root.mel index c6cbb5fb..14d7489b 100644 --- a/.melodium-ci/lib-root.mel +++ b/.melodium-ci/lib-root.mel @@ -284,16 +284,13 @@ treatment buildTestAyaForArchUsingImage[logger: Logger, dispatcher: CicdDispatch executor_name = "rust", commands = |raw_commands([ // Build - ${bash -c "set -o allexport && source /tmp/github.env && set +o allexport - cargo hack build --all-targets --feature-powerset --exclude aya-ebpf --exclude aya-ebpf-bindings --exclude aya-log-ebpf --exclude integration-ebpf --exclude xtask --workspace" + ${bash -c "cargo hack build --all-targets --feature-powerset --exclude aya-ebpf --exclude aya-ebpf-bindings --exclude aya-log-ebpf --exclude integration-ebpf --exclude xtask --workspace" }, // Test - ${bash -c "set -o allexport && source /tmp/github.env && set +o allexport - cargo hack test --all-targets --feature-powerset --exclude aya-ebpf --exclude aya-ebpf-bindings --exclude aya-log-ebpf --exclude integration-ebpf --exclude integration-test --exclude xtask --workspace" + ${bash -c "cargo hack test --all-targets --feature-powerset --exclude aya-ebpf --exclude aya-ebpf-bindings --exclude aya-log-ebpf --exclude integration-ebpf --exclude integration-test --exclude xtask --workspace" }, // Doc - ${bash -c "set -o allexport && source /tmp/github.env && set +o allexport - cargo hack test --doc --feature-powerset --exclude aya-ebpf --exclude aya-ebpf-bindings --exclude aya-log-ebpf --exclude integration-ebpf --exclude integration-test --exclude xtask --workspace" + ${bash -c "cargo hack test --doc --feature-powerset --exclude aya-ebpf --exclude aya-ebpf-bindings --exclude aya-log-ebpf --exclude integration-ebpf --exclude integration-test --exclude xtask --workspace" }, "echo Build done", "sleep 1"