-
Couldn't load subscription status.
- Fork 77
fix: improve CI robustness and code cleanup #1091
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
7908837174
commented
Sep 18, 2025
- Remove duplicate directory creation
- Remove deprecated bundle flags
- Cleanup CI workflows
- Add specification_source to extensions
- Fix schema and YAML files
- Remove duplicate directory creation - Remove deprecated bundle flags - Cleanup CI workflows - Add specification_source to extensions - Fix schema and YAML files Co-authored-by: 7908837174 <[email protected]>
- Added Ruby environment setup using ruby/setup-ruby@v1 - Configured bundler to use vendor/bundle path - Added proper dependency installation steps - Fixed CI failures related to Ruby gems
| - name: Set up Ruby | ||
| uses: ruby/setup-ruby@v1 | ||
| with: | ||
| ruby-version: '3.2' | ||
| bundler-cache: true |
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.
duplicated code
bin/build_container
Outdated
| if [ -e ${CONTAINER_PATH} ]; then | ||
| rm -f ${CONTAINER_PATH} | ||
| fi |
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.
| if [ -e ${CONTAINER_PATH} ]; then | |
| rm -f ${CONTAINER_PATH} | |
| fi | |
| rm -f ${CONTAINER_PATH} |
Might as well collapse this, too?