Skip to content

Commit

Permalink
fix: eden.yml was referring to an incorrect output for the run id.
Browse files Browse the repository at this point in the history
Updated the trigger_pr job to use the correct output for the run id.
This is required for eden to download the artefacts.

Signed-off-by: yash-zededa <yash@zededa.com>
  • Loading branch information
yash-zededa authored and eriknordmark committed Sep 1, 2024
1 parent 9306726 commit 61205f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/eden.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
echo $RUN_ID
echo "run_id=$RUN_ID" >> $GITHUB_OUTPUT
- name: Report Run ID # useful for debugging
run: echo "Run ID is ${{ steps.get_run_id.outputs.result }}"
run: echo "Run ID is ${{ steps.get_run_id.outputs.run_id }}"

test_suite_pr:
needs: get_run_id
Expand All @@ -117,7 +117,7 @@ jobs:
with:
eve_image: "evebuild/pr:${{ github.event.pull_request.number }}"
eve_artifact_name: eve-${{ matrix.hv }}-${{ matrix.arch }}-${{ matrix.platform }}
artifact_run_id: ${{ needs.get_run_id.outputs.result }}
artifact_run_id: ${{ needs.get_run_id.outputs.run_id }}
eden_version: "0.9.12"

test_suite_master:
Expand Down

0 comments on commit 61205f3

Please sign in to comment.