-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathEarthfile
38 lines (26 loc) · 1013 Bytes
/
Earthfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Set the Earthly version to 0.7
VERSION 0.7
FROM debian:stable-slim
# cspell: words livedocs sitedocs
# check-markdown markdown check using catalyst-ci.
check-markdown:
DO github.com/input-output-hk/catalyst-ci/earthly/mdlint:v2.0.10+CHECK
# markdown-check-fix markdown check and fix using catalyst-ci.
markdown-check-fix:
LOCALLY
DO github.com/input-output-hk/catalyst-ci/earthly/mdlint:v2.0.10+MDLINT_LOCALLY --src=$(echo ${PWD}) --fix=--fix
# check-spelling Check spelling in this repo inside a container.
check-spelling:
DO github.com/input-output-hk/catalyst-ci/earthly/cspell:v2.0.10+CHECK
repo-docs:
# Create artifacts of extra files we embed inside the documentation when its built.
FROM scratch
WORKDIR /repo
COPY --dir *.md LICENSE-APACHE LICENSE-MIT .
SAVE ARTIFACT /repo repo
repo-config-2:
# Create artifacts of config file we need to refer to in builders.
FROM scratch
WORKDIR /repo
COPY --dir .sqlfluff .
SAVE ARTIFACT /repo repo