-
Notifications
You must be signed in to change notification settings - Fork 106
CircleCI: added QA automation #660
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
.circleci/config.yml
Outdated
@@ -463,7 +495,8 @@ workflows: | |||
<<: *after-linter | |||
- valgrind: | |||
test_args: CLUSTER=0 AOF=0 | |||
<<: *on-any-branch | |||
#@@ <<: *on-any-branch | |||
<<: *never |
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.
Why disabling valgrind?
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.
Beat me to it. I'd argue that we should run valgrind on integration attempts not all branches -IMHO.
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.
#@@
is disabling for the sake of the PR, it takes about an hour to run. Re-enabling it once everything passes.
Basically, running valgrind here is Dvir's call, I prefer to either invoke it manually or nightly or when a PR is merged.
We can also try to enable CLang Sanitizers on RedisAI.
Codecov Report
@@ Coverage Diff @@
## master #660 +/- ##
==========================================
+ Coverage 78.25% 78.40% +0.15%
==========================================
Files 41 41
Lines 6535 6535
==========================================
+ Hits 5114 5124 +10
+ Misses 1421 1411 -10
Continue to review full report at Codecov.
|
@@ -167,7 +167,7 @@ jobs: | |||
|
|||
build-and-test: | |||
docker: | |||
- image: redisfab/rmbuilder:6.0.9-x64-buster | |||
- image: redisfab/rmbuilder:6.2.1-x64-buster |
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.
can you set the builder image as a parameter? instead of copy-paste?
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.
We're working on a config.yml
abstraction, but the build logic sets up it's own redis version anyway. I'm considering removing the redis version spec from rmbuilder
altogether.
"name": "redisai automation-testing", | ||
"properties": { | ||
"sut_version": "master", | ||
"email_recipients": "redisaidev-aaaacob2o7eeecrhkqwua77kku@redislabs.slack.com", |
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.
this is our slack channel?
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.
It is. You can generate an email address from Slack: https://slack.com/intl/en-il/help/articles/206819278-Send-emails-to-Slack#:~:text=Click%20the%20details%20icon%20in,email%20address%20for%20the%20conversation.
tests/qa/release.json
Outdated
"teardown": true, | ||
"name": "rhel7.7-x86_64-aws", | ||
"concurrency": 1, | ||
"module_url": "http://redismodules.s3.amazonaws.com/{{RS_MODULE_FILE_PREFIX}}/{{RS_MODULE_FILE_PREFIX}}-cpu.linux-centos7-x64.{{MODULE_VERSION}}.zip" |
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.
will it run?
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.
Right. I'll disable this one.
(cherry picked from commit 5045c12)
No description provided.