-
Notifications
You must be signed in to change notification settings - Fork 74
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
Upgrade redis.submodule to 6.2.6 #153
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
ad0411a
Upgrade redis.submodule to 6.2.6
tvd0x2a 9ced746
rerun screwdriver build for PR.
tvd0x2a 9b0e507
Remove screwdriver manylinux1 jobs.
tvd0x2a c745ca3
rerun screwdriver build for PR.
tvd0x2a f3d00b3
Merge branch 'remove-manylinux1-build' of https://github.com/tvd0x2a/…
tvd0x2a File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: Bug report | ||
about: Help us improve Redis by reporting a bug | ||
title: '[BUG]' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
|
||
A short description of the bug. | ||
|
||
**To reproduce** | ||
|
||
Steps to reproduce the behavior and/or a minimal code sample. | ||
|
||
**Expected behavior** | ||
|
||
A description of what you expected to happen. | ||
|
||
**Additional information** | ||
|
||
Any additional information that is relevant to the problem. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Crash report | ||
about: Submit a crash report | ||
title: '[CRASH]' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Crash report** | ||
|
||
Paste the complete crash log between the quotes below. Please include a few lines from the log preceding the crash report to provide some context. | ||
|
||
``` | ||
``` | ||
|
||
**Aditional information** | ||
|
||
1. OS distribution and version | ||
2. Steps to reproduce (if any) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest a feature for Redis | ||
title: '[NEW]' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**The problem/use-case that the feature addresses** | ||
|
||
A description of the problem that the feature will solve, or the use-case with which the feature will be used. | ||
|
||
**Description of the feature** | ||
|
||
A description of what you want to happen. | ||
|
||
**Alternatives you've considered** | ||
|
||
Any alternative solutions or features you've considered, including references to existing open and closed feature requests in this repository. | ||
|
||
**Additional information** | ||
|
||
Any additional information that is relevant to the feature request. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
name: Other | ||
about: Can't find the right issue type? Use this one! | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
name: Question | ||
about: Ask the Redis developers | ||
title: '[QUESTION]' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
Please keep in mind that this issue tracker should be used for reporting bugs or proposing improvements to the Redis server. | ||
|
||
Generally, questions about using Redis should be directed to the [community](https://redis.io/community): | ||
|
||
* [the mailing list](https://groups.google.com/forum/#!forum/redis-db) | ||
* [the `redis` tag at StackOverflow](http://stackoverflow.com/questions/tagged/redis) | ||
* [/r/redis subreddit](http://www.reddit.com/r/redis) | ||
* [the irc channel #redis](http://webchat.freenode.net/?channels=redis) on freenode | ||
|
||
It is also possible that your question was already asked here, so please do a quick issues search before submitting. Lastly, if your question is about one of Redis' [clients](https://redis.io/clients), you may to contact your client's developers for help. | ||
|
||
That said, please feel free to replace all this with your question :) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
|
||
test-ubuntu-latest: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: make | ||
# Fail build if there are warnings | ||
# build with TLS just for compilation coverage | ||
run: make REDIS_CFLAGS='-Werror' BUILD_TLS=yes | ||
- name: test | ||
run: | | ||
sudo apt-get install tcl8.6 | ||
./runtest --verbose | ||
- name: module api test | ||
run: ./runtest-moduleapi --verbose | ||
|
||
build-ubuntu-old: | ||
runs-on: ubuntu-16.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: make | ||
run: make REDIS_CFLAGS='-Werror' | ||
|
||
build-macos-latest: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: make | ||
run: make REDIS_CFLAGS='-Werror' | ||
|
||
build-32bit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: make | ||
run: | | ||
sudo apt-get update && sudo apt-get install libc6-dev-i386 | ||
make REDIS_CFLAGS='-Werror' 32bit | ||
|
||
build-libc-malloc: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: make | ||
run: make REDIS_CFLAGS='-Werror' MALLOC=libc | ||
|
||
build-centos7-jemalloc: | ||
runs-on: ubuntu-latest | ||
container: centos:7 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: make | ||
run: | | ||
yum -y install gcc make | ||
make REDIS_CFLAGS='-Werror' |
Oops, something went wrong.
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.
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.
Note that this URL is changed.
It looks like redis-stable.tar.gz has not been updated in over a year. The redis.io site offers 6.2.6 as the stable version for download (as of 2021-10-16).
https://web.archive.org/web/20211010161415/https://redis.io/download