Feature centos7#10
Merged
Merged
Conversation
Co-authored-by: ayanimea <13433370+ayanimea@users.noreply.github.com>
Add EL7 (CentOS 7) CI/CD support for i686 and x86_64
There was a problem hiding this comment.
Pull request overview
Adds Enterprise Linux 7 (CentOS 7) CI packaging support for cnee, aligning EL7 automation with the existing EL6/EL8 workflows and enabling RPM artifacts for downstream users.
Changes:
- Added a new GitHub Actions workflow to build, run
cneee2e tests, and produce RPM/SRPM artifacts on CentOS 7 for bothx86_64andi686. - Added an EL7-specific RPM spec file for building the
cneeRPM from a source tarball produced viagit archive.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
build/SPECS/cnee-el7.spec |
Introduces an EL7-targeted RPM spec for cnee packaging. |
.github/workflows/el7.yml |
Implements CentOS 7 vault-repo setup plus build/test/RPM packaging for x86_64 and i686 via docker run centos:7. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new CI/CD workflow for building and packaging the
cneetool on Enterprise Linux 7 (CentOS 7), along with the addition of a dedicated RPM spec file for EL7 builds. The workflow automates building, testing, and packaging for both x86_64 and i686 architectures, and ensures compatibility with CentOS 7's end-of-life vault repositories. These changes enable reliable EL7 builds and RPM packaging for downstream users.Enterprise Linux 7 CI/CD workflow:
.github/workflows/el7.ymlto automate build, test, and RPM packaging for CentOS 7, supporting both x86_64 and i686 architectures using Docker containers and vault repositories.RPM packaging improvements:
build/SPECS/cnee-el7.spec, a dedicated RPM spec file for EL7, specifying build requirements, installation steps, and file packaging for thecneecommand-line tool.