Skip to content

Commit 2c954c9

Browse files
committed
drop lychee linkcheck
1 parent 8c34d91 commit 2c954c9

File tree

3 files changed

+0
-21
lines changed

3 files changed

+0
-21
lines changed

dev/docs.nix

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,6 @@
2525
cp --no-preserve=mode ${config.packages.docs-json}/*.json docs
2626
mkdocs build --strict --site-dir $out
2727
'';
28-
docs-linkcheck = pkgs.testers.lycheeLinkCheck rec {
29-
extraConfig = {
30-
include_mail = true;
31-
include_verbatim = true;
32-
index_files = [ "index.html" ];
33-
root_dir = site;
34-
};
35-
remap = {
36-
"https://nix-community.org" = site;
37-
};
38-
site = config.packages.docs;
39-
};
4028
docs-json =
4129
pkgs.runCommand "docs-json"
4230
{

flake.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,6 @@
156156
inherit (self'.packages)
157157
dnscontrol-check
158158
docs
159-
docs-linkcheck
160159
sops-check
161160
terraform-validate
162161
;

tasks.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,6 @@ def docs(c: Context) -> None:
9595
c.run("nix develop .#mkdocs -c mkdocs serve")
9696

9797

98-
@task
99-
def docs_linkcheck(c: Context) -> None:
100-
"""
101-
Run docs online linkchecker
102-
"""
103-
c.run("nix run .#docs-linkcheck.online")
104-
105-
10698
def get_hosts(hosts: str) -> list[DeployHost]:
10799
deploy_hosts = []
108100
for host in hosts.split(","):

0 commit comments

Comments
 (0)