-
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
Changes from all commits
1f97155
bd4165a
f896be8
0f5a37c
7387a08
85a57d2
183e101
86606ed
5473bc8
ee2b73e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
+3 −0 | .gitignore | |
+43 −10 | bin/enable-utf8 | |
+7 −4 | bin/getbazel | |
+84 −11 | bin/getclang | |
+2 −2 | bin/getcmake | |
+8 −2 | bin/getepel | |
+35 −11 | bin/getgcc | |
+41 −0 | bin/getget | |
+18 −18 | bin/getpy2 | |
+18 −18 | bin/getpy3 | |
+4 −3 | bin/getredis | |
+17 −0 | bin/getrust | |
+86 −0 | bin/github-lastver | |
+3 −1 | bin/symlink | |
+12 −3 | mk/docker | |
+12 −3 | mk/docker.cross | |
+22 −10 | mk/docker.native | |
+1 −1 | mk/variant.defs | |
+0 −1 | paella/__init__.py | |
+0 −202 | paella/contrib/distro/LICENSE | |
+0 −1,216 | paella/contrib/distro/distro.py | |
+0 −25 | paella/docopt1.py | |
+14 −1 | paella/platform.py | |
+8 −23 | paella/setup.py | |
+19 −0 | paella/text.py | |
+6 −0 | shibumi/functions | |
+4 −0 | wd40/.cargo/config.toml | |
+16 −0 | wd40/Cargo.toml | |
+4 −0 | wd40/bb/Makefile | |
+6 −0 | wd40/bb/bb.c | |
+1 −0 | wd40/linux-x64/.gitignore | |
+ − | wd40/linux-x64/libbb.a | |
+8 −0 | wd40/src/bin.rs | |
+25 −0 | wd40/src/lib.rs |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
6.0.12-41 | ||
5.4.14-37 | ||
6.0.8-30 | ||
100.0.0-2199 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"service_id": "single_module_test_cycle", | ||
"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 commentThe 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 commentThe 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. |
||
"sut_environments": [], | ||
"tools_environment": {}, | ||
"modules_version": "master", | ||
"test_names_modules": [ | ||
"{{RS_MODULE}}" | ||
], | ||
"cycle_environments_setup": [ | ||
{ | ||
"teardown": true, | ||
"name": "bionic-amd64-aws", | ||
"concurrency": 1, | ||
"module_url": "http://redismodules.s3.amazonaws.com/{{RS_MODULE_FILE_PREFIX}}/snapshots/{{RS_MODULE_FILE_PREFIX}}-cpu.linux-bionic-x64.master.zip" | ||
} | ||
] | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"service_id": "single_module_test_cycle", | ||
"name": "redisai automation-testing", | ||
"properties": { | ||
"sut_version": "{{RS_VERSION}}", | ||
"email_recipients": "redisaidev-aaaacob2o7eeecrhkqwua77kku@redislabs.slack.com", | ||
"sut_environments": [], | ||
"tools_environment": {}, | ||
"modules_version": "{{MODULE_VERSION}}", | ||
"test_names_modules": [ | ||
"{{RS_MODULE}}" | ||
], | ||
"cycle_environments_setup": [ | ||
{ | ||
"teardown": true, | ||
"name": "xenial-amd64-aws", | ||
"concurrency": 1, | ||
"module_url": "http://redismodules.s3.amazonaws.com/{{RS_MODULE_FILE_PREFIX}}/{{RS_MODULE_FILE_PREFIX}}-cpu.linux-xenial-x64.{{MODULE_VERSION}}.zip" | ||
}, | ||
{ | ||
"teardown": true, | ||
"name": "bionic-amd64-aws", | ||
"concurrency": 1, | ||
"module_url": "http://redismodules.s3.amazonaws.com/{{RS_MODULE_FILE_PREFIX}}/{{RS_MODULE_FILE_PREFIX}}-cpu.linux-bionic-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.
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 fromrmbuilder
altogether.