Skip to content
Closed
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 Earthfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.5.27 AS mdlint-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.5.27 AS cspell-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.5.27 AS python-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.6.0 AS mdlint-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.6.0 AS cspell-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.6.0 AS python-ci
IMPORT github.com/input-output-hk/catalyst-ci:v3.5.27 AS cat-ci

FROM debian:stable-slim
Expand Down Expand Up @@ -49,7 +49,7 @@
# Its also fast.
check-python:
DO python-ci+LINT_PYTHON

Check failure on line 52 in Earthfile

View workflow job for this annotation

GitHub Actions / ci / check / .+check-python

Error

The command RUN diff -Nau ruff.toml ruff.toml.std did not complete successfully. Exit code 1
# Sync standard configs.
sync-config:
FROM scratch
Expand Down
2 changes: 1 addition & 1 deletion docs/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.5.27 AS docs-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.6.0 AS docs-ci

IMPORT .. AS repo

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.5.27 AS cddl-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.6.0 AS cddl-ci

check-cddl:
FROM cddl-ci+cddl-base
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.5.27 AS cddl-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.6.0 AS cddl-ci

check-cddl:
FROM cddl-ci+cddl-base
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.5.27 AS cddl-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.6.0 AS cddl-ci

check-cddl:
FROM cddl-ci+cddl-base
Expand Down
2 changes: 1 addition & 1 deletion rust/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.5.29 AS rust-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.6.0 AS rust-ci
IMPORT ../ AS repo-ci

COPY_SRC:
Expand Down
6 changes: 3 additions & 3 deletions specs/Earthfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.5.27 AS python-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/debian:v3.5.27 AS debian
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cue:v3.5.27 AS cue
IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.6.0 AS python-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/debian:v3.6.0 AS debian
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cue:v3.6.0 AS cue

IMPORT ../docs AS docs

Expand Down Expand Up @@ -79,6 +79,6 @@
COPY --keep-ts docs+generated-pages/signed_doc /docs

# Check our validation code actually works properly
RUN cd generators; \

Check failure on line 82 in specs/Earthfile

View workflow job for this annotation

GitHub Actions / ci / check / ./specs+check

Error

The command RUN cd generators; uv run docs -o "../../docs" ../signed_doc.json did not complete successfully. Exit code 1
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
@@ -1,6 +1,6 @@
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.5.27 AS docs-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.6.0 AS docs-ci

# update-docs-dev-script: get the latest docs dev script from CI.
update-docs-dev-script:
Expand Down
Loading