Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: use ctags v6.1.0 #811

Merged
merged 2 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading