forked from valkey-io/valkey
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Madelyn Olson <[email protected]>
- Loading branch information
Showing
29 changed files
with
231 additions
and
238 deletions.
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 |
---|---|---|
|
@@ -8,24 +8,24 @@ on: | |
workflow_dispatch: | ||
jobs: | ||
coverity: | ||
if: github.repository == 'placeholderkv/placeholderkv' | ||
if: github.repository == 'valkey-io/valkey' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@main | ||
- name: Download and extract the Coverity Build Tool | ||
run: | | ||
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=${{ secrets.COVERITY_SCAN_TOKEN }}&project=placeholderkv-unstable" -O cov-analysis-linux64.tar.gz | ||
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=${{ secrets.COVERITY_SCAN_TOKEN }}&project=valkey-unstable" -O cov-analysis-linux64.tar.gz | ||
mkdir cov-analysis-linux64 | ||
tar xzf cov-analysis-linux64.tar.gz --strip 1 -C cov-analysis-linux64 | ||
- name: Install placeholderkv dependencies | ||
- name: Install valkey dependencies | ||
run: sudo apt install -y gcc tcl8.6 tclx procps libssl-dev | ||
- name: Build with cov-build | ||
run: cov-analysis-linux64/bin/cov-build --dir cov-int make | ||
- name: Upload the result | ||
run: | | ||
tar czvf cov-int.tgz cov-int | ||
curl \ | ||
--form project=placeholderkv-unstable \ | ||
--form project=valkey-unstable \ | ||
--form email=${{ secrets.COVERITY_SCAN_EMAIL }} \ | ||
--form token=${{ secrets.COVERITY_SCAN_TOKEN }} \ | ||
--form [email protected] \ | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
Please check https://github.com/placeholderkv/placeholderkv/issues | ||
Please check https://github.com/valkey-io/valkey/issues |
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 |
---|---|---|
|
@@ -19,9 +19,9 @@ There is also an active community of Redis users at Stack Overflow: | |
|
||
https://stackoverflow.com/questions/tagged/redis | ||
|
||
Issues and pull requests for documentation belong on the placeholderkv-doc repo: | ||
Issues and pull requests for documentation belong on the valkey-doc repo: | ||
|
||
https://github.com/placeholderkv/placeholderkv-doc | ||
https://github.com/valkey-io-doc | ||
|
||
If you are reporting a security bug or vulnerability, see SECURITY.md. | ||
|
||
|
@@ -58,7 +58,7 @@ By making a contribution to this project, I certify that: | |
involved. | ||
``` | ||
|
||
We require that every contribution to placeholderkv to be signed with a DCO. We require the usage of known identity (such as a real or preferred name). We do not accept anonymous contributors nor those utilizing pseudonyms. A DCO signed commit will contain a line like: | ||
We require that every contribution to Valkey to be signed with a DCO. We require the usage of known identity (such as a real or preferred name). We do not accept anonymous contributors nor those utilizing pseudonyms. A DCO signed commit will contain a line like: | ||
|
||
``` | ||
Signed-off-by: Jane Smith <[email protected]> | ||
|
@@ -75,7 +75,7 @@ to accomplish and why. Use cases are important for features to be accepted. | |
Here you can see if there is consensus about your idea. | ||
|
||
2. If in step 1 you get an acknowledgment from the project leaders, use the following procedure to submit a patch: | ||
1. Fork placeholderkv on GitHub ( https://docs.github.com/en/github/getting-started-with-github/fork-a-repo ) | ||
1. Fork Valkey on GitHub ( https://docs.github.com/en/github/getting-started-with-github/fork-a-repo ) | ||
1. Create a topic branch (git checkout -b my_branch) | ||
1. Make the needed changes and commit with a DCO. (git commit -s) | ||
1. Push to your branch (git push origin my_branch) | ||
|
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
Oops, something went wrong.