-
Notifications
You must be signed in to change notification settings - Fork 57
ci: Use the certificate generation steps from the dev guide #4691
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: main
Are you sure you want to change the base?
Conversation
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.
Pull request overview
This PR replaces a Python-based certificate generation script with shell commands from the development guide. The change simplifies the build process by using standard OpenSSL commands instead of maintaining a custom Python solution with external dependencies.
Key changes:
- Removed the 539-line Python certificate generation script
- Added a shell script using OpenSSL commands for certificate generation
- Removed cryptography package dependency from the build process
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| tests/generate_certs.py | Deleted the entire Python certificate generation implementation |
| Makefile | Updated to use new shell script and removed cryptography dependency installation |
| .ci/generate_certs.sh | New shell script implementing certificate generation using OpenSSL commands |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Pull request overview
Copilot reviewed 4 out of 4 changed files in this pull request and generated 3 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Use the certificate generation steps from the dev guide and remove the Python script.