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.
Merge branch 'unstable' into versioning
- Loading branch information
Showing
212 changed files
with
1,709 additions
and
1,548 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# See https://github.com/crate-ci/typos/blob/master/docs/reference.md to configure typos | ||
|
||
[files] | ||
extend-exclude = [ | ||
"deps/", | ||
# crc16_slottable is primarily pre-generated random strings. | ||
"src/crc16_slottable.h", | ||
] | ||
|
||
[default.extend-words] | ||
advices = "advices" | ||
exat = "exat" | ||
optin = "optin" | ||
ro = "ro" | ||
smove = "smove" | ||
|
||
[type.c] | ||
extend-ignore-re = [ | ||
"BA3E2571", # sha1.c | ||
"D4C4DAA4", # sha1.c | ||
"Georg Nees", | ||
"\\[l\\]ist", # eval.c | ||
] | ||
|
||
[type.tcl] | ||
extend-ignore-re = [ | ||
"DUMPed", | ||
] | ||
|
||
[type.sv.extend-identifiers] | ||
# sv = .h | ||
module_gil_acquring = "module_gil_acquring" | ||
|
||
[type.c.extend-identifiers] | ||
ang = "ang" | ||
clen = "clen" | ||
fle = "fle" | ||
module_gil_acquring = "module_gil_acquring" | ||
nd = "nd" | ||
ot = "ot" | ||
|
||
[type.tcl.extend-identifiers] | ||
fo = "fo" | ||
oll = "oll" | ||
stressers = "stressers" | ||
|
||
[type.sv.extend-words] | ||
# sv = .h | ||
fo = "fo" | ||
seeked = "seeked" | ||
|
||
[type.c.extend-words] | ||
arange = "arange" | ||
fo = "fo" | ||
frst = "frst" | ||
limite = "limite" | ||
pn = "pn" | ||
seeked = "seeked" | ||
tre = "tre" | ||
ws = "ws" | ||
|
||
[type.systemd.extend-words] | ||
# systemd = .conf | ||
ake = "ake" | ||
|
||
[type.tcl.extend-words] | ||
fo = "fo" | ||
lst = "lst" | ||
tre = "tre" |
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
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,25 +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-io%2Fvalkey" -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 | ||
run: sudo apt install -y gcc tcl8.6 tclx procps libssl-dev | ||
- name: Install Valkey dependencies | ||
run: sudo apt install -y gcc 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 email=${{ secrets.COVERITY_SCAN_EMAIL }} \ | ||
--form token=${{ secrets.COVERITY_SCAN_TOKEN }} \ | ||
--form [email protected] \ | ||
https://scan.coverity.com/builds | ||
https://scan.coverity.com/builds?project=valkey-io%2Fvalkey |
Oops, something went wrong.