-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI: enhance nightly backward compatibility testing workflow #2083
base: main
Are you sure you want to change the base?
CI: enhance nightly backward compatibility testing workflow #2083
Conversation
…tions Co-authored-by: Sébastien Fauvel <[email protected]> Co-authored-by: DJO <[email protected]> Co-authored-by: Jean-Philippe Raynaud <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|| (echo "SUCCESS=false" >> $GITHUB_ENV && exit 1) | ||
|
||
- name: Define the JSON file name for the test result | ||
if: always() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want this step to run even if the run is cancelled ? If yes keep it as is, else change it to:
if: always() | |
if: success() || failure() |
same remark for all steps with a if: always
in the file
Causes the step to always execute, and returns true, even when canceled.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, this step must always run to upload the JSON result file indicating the failure. I'll make the modifications, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated in this commit ✅ .
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀
@@ -18,17 +19,42 @@ on: | |||
default: "10.1.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
default: "10.1.1" | |
default: "10.1.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated in this commit ✅ .
run: | | ||
if [[ "${{ github.event_name }}" == "schedule" ]]; then | ||
echo "total_releases=3" >> $GITHUB_OUTPUT | ||
echo 'cardano_node_version=["10.1.1"]' >> $GITHUB_OUTPUT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
echo 'cardano_node_version=["10.1.1"]' >> $GITHUB_OUTPUT | |
echo 'cardano_node_version=["10.1.2"]' >> $GITHUB_OUTPUT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated in this commit ✅ .
f6e0eb7
to
17f8c3c
Compare
Content
This PR includes enhancements for the nightly backward compatibility testing workflow.
It schedules the workflow to run at night (2:30 UTC) and uploads artifacts upon failure.
Additionally, it introduces a comprehensive published summary for the runs:
Pre-submit checklist
Issue(s)
Closes #2027