-
Notifications
You must be signed in to change notification settings - Fork 1
Add simple x #170
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
base: ACI-4001-comp-cache-benchmark
Are you sure you want to change the base?
Add simple x #170
Conversation
SummaryThis PR adds SimpleX benchmarking workflows to the CI pipeline, including both baseline and compilation cache variants. The implementation follows existing patterns but is missing error handling in the workflow scripts. Walkthrough
|
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.
This is an AI-generated review. Please review it carefully.
Actionable comments posted: 2
title: Install dependencies | ||
inputs: | ||
- content: |- | ||
./scripts/ios/prepare-x86_64.sh |
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.
🐛 Bug
The script execution lacks error handling and pipefail settings that are present in other similar workflows. This could cause the build to continue even if the preparation script fails.
🔄 Suggestion:
./scripts/ios/prepare-x86_64.sh | |
set -exo pipefail | |
./scripts/ios/prepare-x86_64.sh |
title: Install dependencies | ||
inputs: | ||
- content: |- | ||
./scripts/ios/prepare-x86_64.sh |
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.
🐛 Bug
The script execution lacks error handling and pipefail settings that are present in other similar workflows. This could cause the build to continue even if the preparation script fails.
🔄 Suggestion:
./scripts/ios/prepare-x86_64.sh | |
set -exo pipefail | |
./scripts/ios/prepare-x86_64.sh |
No description provided.