fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

ci: use ctags v6.1.0 (#811)

+6 -6
+3 -3
flake.nix
··· 19 19 # Pin a specific version of universal-ctags to the same version as in cmd/symbols/ctags-install-alpine.sh. 20 20 overlays.ctags = self: super: rec { 21 21 my-universal-ctags = super.universal-ctags.overrideAttrs (old: rec { 22 - version = "6.0.0"; 22 + version = "6.1.0"; 23 23 src = super.fetchFromGitHub { 24 24 owner = "universal-ctags"; 25 25 repo = "ctags"; 26 26 rev = "v${version}"; 27 - sha256 = "sha256-XlqBndo8g011SDGp3zM7S+AQ0aCp6rpQlqJF6e5Dd6w="; 27 + sha256 = "sha256-f8+Ifjn7bhSYozOy7kn+zCLdHGrH3iFupHUZEGynz9Y="; 28 28 }; 29 29 # disable checks, else we get `make[1]: *** No rule to make target 'optlib/cmake.c'. Stop.` 30 30 doCheck = false; 31 31 checkFlags = [ ]; 32 32 }); 33 - # The ctags in the registry currently is 6.0.0 so we can skip building in that case 33 + # Skip building if same ctags version as registry 34 34 universal-ctags = if super.universal-ctags.version == my-universal-ctags.version then super.universal-ctags else my-universal-ctags; 35 35 }; 36 36 };
+3 -3
install-ctags-alpine.sh
··· 3 3 # This script installs universal-ctags within an alpine container. 4 4 5 5 # Commit hash of github.com/universal-ctags/ctags. 6 - # Last bumped 2023-10-24. 7 - CTAGS_VERSION=v6.0.0 8 - CTAGS_ARCHIVE_TOP_LEVEL_DIR=ctags-6.0.0 6 + # Last bumped 2024-09-02. 7 + CTAGS_VERSION=v6.1.0 8 + CTAGS_ARCHIVE_TOP_LEVEL_DIR=ctags-6.1.0 9 9 # When using commits you can rely on 10 10 # CTAGS_ARCHIVE_TOP_LEVEL_DIR=ctags-$CTAGS_VERSION 11 11