Skip to content
Open
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
12 changes: 2 additions & 10 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.6.1 AS mdlint-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.6.1 AS cspell-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.6.1 AS python-ci
IMPORT github.com/input-output-hk/catalyst-ci:v3.6.0 AS cat-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/debian:v3.6.1 AS debian

FROM debian:stable-slim

# check-markdown : markdown check using catalyst-ci.
check-markdown:
Expand All @@ -19,21 +19,13 @@ markdown-check-fix:

# clean-spelling-list : Make sure the project dictionary is properly sorted.
clean-spelling-list:
FROM debian+debian-clean
DO cspell-ci+CLEAN

# check-spelling : Check spelling in this repo inside a container.
check-spelling:
DO cspell-ci+CHECK

# spell-list-words : List words in a dictionary
spell-list-words:
FROM ghcr.io/streetsidesoftware/cspell:8.0.0
WORKDIR /work

COPY . .

RUN cspell-cli --words-only --unique "wasm/**" | sort -f

# repo-docs : target to store the documentation from the root of the repo.
repo-docs:
# Create artifacts of extra files we embed inside the documentation when its built.
Expand Down
1 change: 0 additions & 1 deletion specs/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,3 @@ check:
# Check our validation code actually works properly
RUN cd generators; \
uv run docs -o "../../docs" ../signed_doc.json

2 changes: 1 addition & 1 deletion utilities/docs-preview/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.6.1 AS docs-ci

# update-docs-dev-script: get the latest docs dev script from CI.
update-docs-dev-script:
DO docs-ci+SYNC_LOCAL_DOCS
DO docs-ci+SYNC_LOCAL_DOCS
Loading