Skip to content

Commit

Permalink
ci: use ctags v6.1.0 (#811)
Browse files Browse the repository at this point in the history
  • Loading branch information
keegancsmith authored Sep 3, 2024
1 parent 9697031 commit 18fa057
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@
# Pin a specific version of universal-ctags to the same version as in cmd/symbols/ctags-install-alpine.sh.
overlays.ctags = self: super: rec {
my-universal-ctags = super.universal-ctags.overrideAttrs (old: rec {
version = "6.0.0";
version = "6.1.0";
src = super.fetchFromGitHub {
owner = "universal-ctags";
repo = "ctags";
rev = "v${version}";
sha256 = "sha256-XlqBndo8g011SDGp3zM7S+AQ0aCp6rpQlqJF6e5Dd6w=";
sha256 = "sha256-f8+Ifjn7bhSYozOy7kn+zCLdHGrH3iFupHUZEGynz9Y=";
};
# disable checks, else we get `make[1]: *** No rule to make target 'optlib/cmake.c'. Stop.`
doCheck = false;
checkFlags = [ ];
});
# The ctags in the registry currently is 6.0.0 so we can skip building in that case
# Skip building if same ctags version as registry
universal-ctags = if super.universal-ctags.version == my-universal-ctags.version then super.universal-ctags else my-universal-ctags;
};
};
Expand Down
6 changes: 3 additions & 3 deletions install-ctags-alpine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# This script installs universal-ctags within an alpine container.

# Commit hash of github.com/universal-ctags/ctags.
# Last bumped 2023-10-24.
CTAGS_VERSION=v6.0.0
CTAGS_ARCHIVE_TOP_LEVEL_DIR=ctags-6.0.0
# Last bumped 2024-09-02.
CTAGS_VERSION=v6.1.0
CTAGS_ARCHIVE_TOP_LEVEL_DIR=ctags-6.1.0
# When using commits you can rely on
# CTAGS_ARCHIVE_TOP_LEVEL_DIR=ctags-$CTAGS_VERSION

Expand Down

0 comments on commit 18fa057

Please sign in to comment.