-
Notifications
You must be signed in to change notification settings - Fork 28
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
CI: Run tests on commit or PR #85
Open
ctoth
wants to merge
22
commits into
lisdude:master
Choose a base branch
from
MongooseMoo:ci
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
75b5f56
to
5e027a2
Compare
I have rebased this on latest master and it is now working properly. If any of the tests fail, the job fails. If they all succeed, it succeeds. We should be good to merge :) |
The cache now uses an unordered_map with a custom hash function, because you can't usefully compare an std::pair<const char*, unsigned char>. The JIT has also been re-enabled.
By locking it before we needed to, we were essentially undoing all of the benefits of having threaded name lookups in the first place.
This also reverts an accidental commit of CMakeLists.txt changes to LeakCheck.
This commit creates our Github Actions CI setup: - Added Github Action (c10ae3a) - Installed dependencies before building with CMake (ea46390) - Set action to run on 'ci' branch (22cdd59) - Copied 'version_options.h' for builds (e168dff) - Automated tests (614d4fd) - Installed the correct bundler (6d9f47f) - Improved server log handling (92a13e7) - Enhanced test automation (9f8d0db) - Concurrent server and test execution (6d2d852) - YML config improvements (e8d6134) - Better MOO process handling (2ea05ac) - Finalized changes (045764f) This commit establishes our Github Actions CI workflow enabling automatic testing of the moo executable.
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.
Overview
This Pull Request introduces a new GitHub Actions CI/CD workflow that automatically builds and tests the codebase upon commits and PRs to the
master
branch. The workflow includes steps for dependency installation, build configuration, and test execution.If the tests fail, the workflow will fail, giving instant feedback in the GitHub UI.