From 3d70b3fb3d4dd4d87e6330d63ba1094dbda8051b Mon Sep 17 00:00:00 2001 From: Quentin VIGNAUD Date: Mon, 27 Oct 2025 17:46:53 +0100 Subject: [PATCH] Fix env load --- .melodium-ci/on_image.mel | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.melodium-ci/on_image.mel b/.melodium-ci/on_image.mel index ff614079..3824efcf 100644 --- a/.melodium-ci/on_image.mel +++ b/.melodium-ci/on_image.mel @@ -122,15 +122,15 @@ treatment buildTestAyaForArch[logger: Logger, github_contexts: JavaScriptEngine, name = |format("build_{short}", |entry("short", short_rust_arch)), commands = |raw_commands([ // Build - ${bash -c "set -o allexport && source /tmp/github.env && set +o allexport + ${bash -c "set -o allexport && source $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" }, // Test - ${bash -c "set -o allexport && source /tmp/github.env && set +o allexport + ${bash -c "set -o allexport && source $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" }, // Doc - ${bash -c "set -o allexport && source /tmp/github.env && set +o allexport + ${bash -c "set -o allexport && source $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" } ]),