Raymond Toy pushed to branch issue-334-add-wiki-link-checker at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • .gitlab-ci.yml
    ... ... @@ -193,7 +193,6 @@ osx:benchmark:
    193 193
         - ../../snapshot/bin/lisp -load report
    
    194 194
     
    
    195 195
     # From https://github.com/tcort/markdown-link-check
    
    196
    -# Checks links on the wiki pages whenever any wiki markdown pages change. 
    
    197 196
     linkchecker:
    
    198 197
       stage: test
    
    199 198
       image:
    
    ... ... @@ -203,4 +202,15 @@ linkchecker:
    203 202
         - find . -name \*.md -print0 | xargs -0 -n1 markdown-link-check
    
    204 203
       rules:
    
    205 204
         - changes:
    
    206
    -      - "**/*.md"
    \ No newline at end of file
    205
    +      - "**/*.md"
    
    206
    +
    
    207
    +# Checks links on the wiki pages whenever any wiki markdown pages change. 
    
    208
    +wikilinkchecker:
    
    209
    +  stage: test
    
    210
    +  image:
    
    211
    +    name: ghcr.io/tcort/markdown-link-check:3.11.2
    
    212
    +    entrypoint: ["/bin/sh", "-c"]
    
    213
    +  script:
    
    214
    +    - git clone https://gitlab.common-lisp.net/cmucl/cmucl.wiki.git
    
    215
    +    - cd cmucl.wiki
    
    216
    +    - find . -name \*.md -print0 | xargs -0 -n1 markdown-link-check
    \ No newline at end of file