mirror of https://github.com/zulip/zulip.git
sgrep/semgrep: Updgrade and rename sgrep to semgrep.
With its new upgrade, sgrep has been renamed to semgrep. Rename sgrep.yml to semgrep.yml
This commit is contained in:
parent
a3d51ae9af
commit
5ab62a3514
|
@ -378,8 +378,8 @@ def main(options: argparse.Namespace) -> "NoReturn":
|
||||||
# Install shellcheck.
|
# Install shellcheck.
|
||||||
run_as_root(["tools/setup/install-shellcheck"])
|
run_as_root(["tools/setup/install-shellcheck"])
|
||||||
|
|
||||||
# Install sgrep.
|
# Install semgrep.
|
||||||
run_as_root(["tools/setup/install-sgrep"])
|
run_as_root(["tools/setup/install-semgrep"])
|
||||||
|
|
||||||
setup_venvs.main()
|
setup_venvs.main()
|
||||||
|
|
||||||
|
|
|
@ -89,10 +89,10 @@ def run() -> None:
|
||||||
description="Checks commit messages for common formatting errors."
|
description="Checks commit messages for common formatting errors."
|
||||||
"(config: .gitlint)")
|
"(config: .gitlint)")
|
||||||
|
|
||||||
sgrep_command = ["sgrep-lint", "--config=./tools/sgrep.yml", "--error"]
|
semgrep_command = ["semgrep", "--config=./tools/semgrep.yml", "--error"]
|
||||||
linter_config.external_linter('sgrep-py', [*sgrep_command, "--lang=python"], ['py'],
|
linter_config.external_linter('semgrep-py', [*semgrep_command, "--lang=python"], ['py'],
|
||||||
description="Syntactic Grep (sgrep) Code Search Tool "
|
description="Syntactic Grep (semgrep) Code Search Tool "
|
||||||
"(config: ./tools/sgrep.yml)")
|
"(config: ./tools/semgrep.yml)")
|
||||||
|
|
||||||
@linter_config.lint
|
@linter_config.lint
|
||||||
def custom_py() -> int:
|
def custom_py() -> int:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# See https://github.com/returntocorp/sgrep/blob/develop/docs/config.md for sgrep rule format
|
# See https://github.com/returntocorp/semgrep/blob/develop/docs/config.md for semgrep rule format
|
||||||
|
|
||||||
rules:
|
rules:
|
||||||
- id: deprecated-render-usage
|
- id: deprecated-render-usage
|
|
@ -0,0 +1,22 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
version=0.5.0-dev.2
|
||||||
|
tarball=semgrep-v$version-ubuntu-16.04.tgz
|
||||||
|
sha256=3959f79b15c900d29567b6cb846831eb7da4c0a10969ffc98a1c9364ea377545
|
||||||
|
tarball_url=https://github.com/returntocorp/semgrep/releases/download/v$version/$tarball
|
||||||
|
|
||||||
|
check_version () {
|
||||||
|
out="$(semgrep --version 2>/dev/null)" && [ "$out" = "$version" ]
|
||||||
|
}
|
||||||
|
|
||||||
|
if ! check_version; then
|
||||||
|
tmpdir="$(mktemp -d)"
|
||||||
|
trap 'rm -r "$tmpdir"' EXIT
|
||||||
|
cd "$tmpdir"
|
||||||
|
wget -nv "$tarball_url"
|
||||||
|
sha256sum -c <<< "$sha256 $tarball"
|
||||||
|
tar -xzf "$tarball" -C /usr/local/lib/
|
||||||
|
ln -sf /usr/local/lib/semgrep-files/semgrep /usr/local/bin/semgrep
|
||||||
|
ln -sf /usr/local/lib/semgrep-files/semgrep-core /usr/local/bin/semgrep-core
|
||||||
|
fi
|
|
@ -1,23 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
version=0.4.9b5
|
|
||||||
tarball=sgrep-$version-ubuntu-16.04.tgz
|
|
||||||
sha256=9e57323fd0eb9133b7ff301a6be8361c073c3bfe6e6959ca1b622e5abc176e03
|
|
||||||
tarball_url=https://github.com/returntocorp/sgrep/releases/download/v$version/$tarball
|
|
||||||
|
|
||||||
check_version () {
|
|
||||||
out="$(sgrep-lint --version 2>/dev/null)" && [ "$out" = "$version" ]
|
|
||||||
}
|
|
||||||
|
|
||||||
if ! check_version; then
|
|
||||||
tmpdir="$(mktemp -d)"
|
|
||||||
trap 'rm -r "$tmpdir"' EXIT
|
|
||||||
cd "$tmpdir"
|
|
||||||
wget -nv "$tarball_url"
|
|
||||||
sha256sum -c <<< "$sha256 $tarball"
|
|
||||||
tar -xzf "$tarball" -C /usr/local/lib/
|
|
||||||
ln -sf /usr/local/lib/sgrep-lint-files/sgrep-lint /usr/local/bin/sgrep-lint
|
|
||||||
ln -sf /usr/local/lib/sgrep-lint-files/sgrep /usr/local/bin/sgrep
|
|
||||||
check_version
|
|
||||||
fi
|
|
|
@ -44,4 +44,4 @@ API_FEATURE_LEVEL = 2
|
||||||
# historical commits sharing the same major version, in which case a
|
# historical commits sharing the same major version, in which case a
|
||||||
# minor version bump suffices.
|
# minor version bump suffices.
|
||||||
|
|
||||||
PROVISION_VERSION = '81.2'
|
PROVISION_VERSION = '81.3'
|
||||||
|
|
Loading…
Reference in New Issue