Skip to content

Commit 3bda215

Browse files
authored
feat: bump ci to 2.9.9 (#327)
1 parent 40046a3 commit 3bda215

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

catalyst-gateway/Earthfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ VERSION --try --global-cache 0.7
44

55
# Set up our target toolchains, and copy our files.
66
builder:
7-
DO github.com/input-output-hk/catalyst-ci/earthly/rust:v2.9.8+SETUP
7+
DO github.com/input-output-hk/catalyst-ci/earthly/rust:v2.9.9+SETUP
88

99
COPY --dir .cargo .config Cargo.* clippy.toml deny.toml rustfmt.toml bin crates tests .
1010
COPY --dir ./event-db/queries ./event-db/queries

catalyst-gateway/event-db/Earthfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ VERSION 0.7
99
# Internal: builder is our Event db builder target. Prepares all necessary artifacts.
1010
# CI target : dependency
1111
builder:
12-
DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.9.8+BUILDER \
12+
DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.9.9+BUILDER \
1313
--sqlfluff_cfg=./../../+repo-config/repo/.sqlfluff
1414

1515
COPY ./../../+repo-config/repo/.sqlfluff .
@@ -24,23 +24,23 @@ builder:
2424
check:
2525
FROM +builder
2626

27-
DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.9.8+CHECK
27+
DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.9.9+CHECK
2828

2929

3030
# format all SQL files in the current project. Local developers tool.
3131
# CI target : false
3232
format:
3333
LOCALLY
3434

35-
DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.9.8+FORMAT --src=$(echo ${PWD}/../../)
35+
DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.9.9+FORMAT --src=$(echo ${PWD}/../../)
3636

3737
# build - an event db docker image.
3838
# CI target : true
3939
build:
4040
FROM +builder
4141

42-
DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.9.8+BUILD --image_name=event-db
43-
DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.9.8+DOCS --image_name=event-db
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
4444

4545
# test the event db database schema
4646
# CI target : true

docs/Earthfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ VERSION 0.7
66
# Copy all the source we need to build the docs
77
src:
88
# Common src setup
9-
DO github.com/input-output-hk/catalyst-ci/earthly/docs:v2.9.8+SRC
9+
DO github.com/input-output-hk/catalyst-ci/earthly/docs:v2.9.9+SRC
1010

1111
# Now copy into that any artifacts we pull from the builds.
1212
COPY --dir ../+repo-docs/repo /docs/includes
@@ -21,12 +21,12 @@ src:
2121
docs:
2222
FROM +src
2323

24-
DO github.com/input-output-hk/catalyst-ci/earthly/docs:v2.9.8+BUILD
24+
DO github.com/input-output-hk/catalyst-ci/earthly/docs:v2.9.9+BUILD
2525

2626
# Make a locally runable container that can serve the docs.
2727
local:
2828
# Build a self contained service to show built docs locally.
29-
DO github.com/input-output-hk/catalyst-ci/earthly/docs:v2.9.8+PACKAGE
29+
DO github.com/input-output-hk/catalyst-ci/earthly/docs:v2.9.9+PACKAGE
3030

3131
# Copy the static pages into the container
3232
COPY +docs/ /usr/share/nginx/html

0 commit comments

Comments
 (0)