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" } ]),