File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ VERSION --try --global-cache 0.7
4
4
5
5
# Set up our target toolchains, and copy our files.
6
6
builder :
7
- DO github.com/input-output-hk/catalyst-ci/earthly/rust:v2.9.9 +SETUP
7
+ DO github.com/input-output-hk/catalyst-ci/earthly/rust:v3.0.0 +SETUP
8
8
9
9
COPY --dir .cargo .config Cargo.* clippy.toml deny.toml rustfmt.toml bin crates tests .
10
10
COPY --dir ./event-db/queries ./event-db/queries
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ VERSION 0.7
9
9
# Internal: builder is our Event db builder target. Prepares all necessary artifacts.
10
10
# CI target : dependency
11
11
builder :
12
- DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.9.9 +BUILDER \
12
+ DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.0.0 +BUILDER \
13
13
--sqlfluff_cfg = ./../../+repo-config/repo/.sqlfluff
14
14
15
15
COPY ./../../+repo-config/repo/.sqlfluff .
@@ -24,23 +24,23 @@ builder:
24
24
check :
25
25
FROM +builder
26
26
27
- DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.9.9 +CHECK
27
+ DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.0.0 +CHECK
28
28
29
29
30
30
# format all SQL files in the current project. Local developers tool.
31
31
# CI target : false
32
32
format :
33
33
LOCALLY
34
34
35
- DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.9.9 +FORMAT --src = $(echo ${PWD }/../../)
35
+ DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.0.0 +FORMAT --src = $(echo ${PWD }/../../)
36
36
37
37
# build - an event db docker image.
38
38
# CI target : true
39
39
build :
40
40
FROM +builder
41
41
42
- DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.9.9 +BUILD --image_name = event-db
43
- DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.9.9 +DOCS --image_name = event-db
42
+ DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.0.0 +BUILD --image_name = event-db
43
+ DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.0.0 +DOCS --image_name = event-db
44
44
45
45
# test the event db database schema
46
46
# CI target : true
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ VERSION 0.7
6
6
# Copy all the source we need to build the docs
7
7
src :
8
8
# Common src setup
9
- DO github.com/input-output-hk/catalyst-ci/earthly/docs:v2.9.9 +SRC
9
+ DO github.com/input-output-hk/catalyst-ci/earthly/docs:v3.0.0 +SRC
10
10
11
11
# Now copy into that any artifacts we pull from the builds.
12
12
COPY --dir ../+repo-docs/repo /docs/includes
21
21
docs :
22
22
FROM +src
23
23
24
- DO github.com/input-output-hk/catalyst-ci/earthly/docs:v2.9.9 +BUILD
24
+ DO github.com/input-output-hk/catalyst-ci/earthly/docs:v3.0.0 +BUILD
25
25
26
26
# Make a locally runable container that can serve the docs.
27
27
local :
28
28
# Build a self contained service to show built docs locally.
29
- DO github.com/input-output-hk/catalyst-ci/earthly/docs:v2.9.9 +PACKAGE
29
+ DO github.com/input-output-hk/catalyst-ci/earthly/docs:v3.0.0 +PACKAGE
30
30
31
31
# Copy the static pages into the container
32
32
COPY +docs/ /usr/share/nginx/html
You can’t perform that action at this time.
0 commit comments