Migrate from CircleCI to GitHub Actions#1
Merged
chenpeizhi merged 6 commits intomasterfrom Nov 9, 2025
Merged
Conversation
Co-authored-by: chenpeizhi <8114085+chenpeizhi@users.noreply.github.com>
Co-authored-by: chenpeizhi <8114085+chenpeizhi@users.noreply.github.com>
Co-authored-by: chenpeizhi <8114085+chenpeizhi@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Migrate CI configuration from CircleCI to GitHub Actions
Migrate from CircleCI to GitHub Actions
Nov 9, 2025
There was a problem hiding this comment.
Pull Request Overview
This PR migrates the CI/CD pipeline from CircleCI to GitHub Actions. The repository URL references are updated from tschijnmo to DrudgeCAS organization, and the legacy YouCompleteMe configuration file is removed.
- Replaced CircleCI configuration with GitHub Actions workflow
- Updated README badge to reflect the new CI system
- Removed obsolete
.ycm_extra_conf.pyfile
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| README.md | Updated CI badge from CircleCI to GitHub Actions with new repository URL |
| .ycm_extra_conf.py | Removed legacy YouCompleteMe configuration file |
| .github/workflows/ci.yml | Added new GitHub Actions workflow with debug and release test jobs |
| .circleci/config.yml | Removed CircleCI configuration |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| run: | | ||
| mkdir cmake-test-debug | ||
| cd cmake-test-debug | ||
| cmake -DCMAKE_BUILD_TYPE=debug .. |
There was a problem hiding this comment.
CMAKE_BUILD_TYPE values should be capitalized. Use 'Debug' instead of 'debug' to follow CMake conventions.
| run: | | ||
| mkdir cmake-test-release | ||
| cd cmake-test-release | ||
| cmake -DCMAKE_BUILD_TYPE=release .. |
There was a problem hiding this comment.
CMAKE_BUILD_TYPE values should be capitalized. Use 'Release' instead of 'release' to follow CMake conventions.
Suggested change
| cmake -DCMAKE_BUILD_TYPE=release .. | |
| cmake -DCMAKE_BUILD_TYPE=Release .. |
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.
Replaces CircleCI with GitHub Actions for CI pipeline.
Changes
.github/workflows/ci.ymlwithtest_debugandtest_releasejobstschijnmo/drudge:base) as CircleCIcontents: readpermissions.circleci/config.ymlBuild and test process remains identical: CMake debug/release builds followed by test execution.
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.