-
Notifications
You must be signed in to change notification settings - Fork 215
Optimize some workflows - use self-hosted runner #7046
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
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 optimizes CI workflows by replacing the Ubuntu GitHub-hosted runner matrix with a self-hosted Linux x64 runner.
- Jobs no longer use a matrix strategy targeting
ubuntu-latest. - All build and test jobs now run on
[self-hosted, Linux, X64].
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/code-coverage.yml | Removed matrix strategy and set runs-on to the self-hosted runner. |
| .github/workflows/build_and_run_chain_simulator_and_execute_system_test.yml | Same update for the chain simulator system test workflow. |
Comments suppressed due to low confidence (2)
.github/workflows/code-coverage.yml:14
- Runner labels on GitHub Actions are case-sensitive. Ensure the self-hosted runner has labels exactly matching 'Linux' and 'X64', or switch to the more common lowercase 'linux' and 'x64'.
runs-on: [self-hosted, Linux, X64]
.github/workflows/build_and_run_chain_simulator_and_execute_system_test.yml:25
- Runner labels on GitHub Actions are case-sensitive. Ensure the self-hosted runner has labels exactly matching 'Linux' and 'X64', or switch to the more common lowercase 'linux' and 'x64'.
runs-on: [self-hosted, Linux, X64]
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## rc/barnard #7046 +/- ##
==============================================
- Coverage 70.14% 70.13% -0.01%
==============================================
Files 942 942
Lines 146428 146428
==============================================
- Hits 102709 102702 -7
- Misses 37939 37945 +6
- Partials 5780 5781 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
📊 MultiversX Automated Test Report: View Report 🔄 Build Details:
🚀 Environment Variables:
|
|
📊 MultiversX Automated Test Report: View Report 🔄 Build Details:
🚀 Environment Variables:
|
Reasoning behind the pull request
Proposed changes
Testing procedure
Pre-requisites
Based on the Contributing Guidelines the PR author and the reviewers must check the following requirements are met:
featbranch created?featbranch merging, do all satellite projects have a proper tag insidego.mod?