Add EL7 (CentOS 7) CI/CD support for i686 and x86_64#9
Merged
Conversation
Co-authored-by: ayanimea <13433370+ayanimea@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add support for EL 7 i686 and x86_64 in CI/CD
Add EL7 (CentOS 7) CI/CD support for i686 and x86_64
Mar 8, 2026
There was a problem hiding this comment.
Pull request overview
Adds GitHub Actions CI/CD coverage for Enterprise Linux 7 (CentOS 7.9 vault) and produces RPM artifacts for both x86_64 and i686, mirroring the existing EL6 workflow pattern.
Changes:
- Introduce an EL7 RPM spec (
build/SPECS/cnee-el7.spec) aligned with the existing EL6 spec approach. - Add an EL7 GitHub Actions workflow (
.github/workflows/el7.yml) that builds/tests incentos:7viadocker run, with anx86_64/i686matrix and RPM artifact upload.
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 | Adds an EL7-focused RPM spec for packaging cnee using EL7-compatible build/install macros. |
| .github/workflows/el7.yml | Adds an EL7 CI workflow that builds, runs the existing e2e script, and produces RPM/SRPM artifacts for both architectures. |
💡 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.
Extends CI/CD coverage to Enterprise Linux 7 with RPM packaging for both
x86_64andi686, matching the existing EL6 pattern.New files
build/SPECS/cnee-el7.spec— RPM spec for EL7; usesGPLv3+licence tag and plainmake/make install DESTDIR=(EL7-compatible macros).github/workflows/el7.yml— GHA workflow witharch: [x86_64, i686]matrixWorkflow design
Follows the EL6 approach exactly: runs on
ubuntu-latestand shells intocentos:7via explicitdocker run(avoids Node 20 requiring glibc ≥ 2.17 vs the container directive injecting the runner into the image).CentOS 7 is EOL, so repos are redirected to
vault.centos.org/7.9.2009.i686 builds use the same
gcc -m32wrapper strategy as EL6:Artifacts are uploaded as
cnee-el7-x86_64-rpmandcnee-el7-i686-rpm.💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.