Skip to content

Commit acad06a

Browse files
aido-mthcatalyst-cibotdependabot[bot]
authored
chore(hermes): bump CI versions (#646)
* chore(catalyst-ci): Update catalyst-ci to v3.5.27 * chore(deps): bump input-output-hk/catalyst-forge/.github/workflows/ci.yml@ci/v1.9.0 Bumps [input-output-hk/catalyst-forge/.github/workflows/ci.yml@ci/v1.9.0](https://github.com/input-output-hk/catalyst-forge) from 1.9.0 to 1.10.0. - [Release notes](https://github.com/input-output-hk/catalyst-forge/releases) - [Commits](input-output-hk/catalyst-forge@ci/v1.9.0...ci/v1.10.0) --- updated-dependencies: - dependency-name: input-output-hk/catalyst-forge/.github/workflows/ci.yml@ci/v1.9.0 dependency-version: 1.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * chore(catalyst-ci): Update catalyst-ci to v3.5.28 * Revert "chore(deps): bump input-output-hk/catalyst-forge/.github/workflows/ci.yml@ci/v1.9.0" This reverts commit ba15f63. --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: catalyst-cibot <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f480e2a commit acad06a

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

Earthfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.5.26 AS mdlint-ci
4-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.5.26 AS cspell-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.5.28 AS mdlint-ci
4+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.5.28 AS cspell-ci
55

66

77
# cspell: words livedocs sitedocs
8-
8+
99
# check-markdown : markdown check using catalyst-ci.
1010
check-markdown:
1111
DO mdlint-ci+CHECK

docs/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.5.26 AS docs-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.5.28 AS docs-ci
44

55
IMPORT .. AS repo
66
IMPORT ../hermes AS hermes

hermes/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.5.26 AS rust-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.5.28 AS rust-ci
44

55
# Use when debugging cat-ci locally.
66
# IMPORT ../../catalyst-ci/earthly/rust AS rust-ci

hermes/apps/athena/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
VERSION 0.8
22

33
IMPORT ../../../wasm AS wasm
4-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.5.26 AS rust-ci
4+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.5.28 AS rust-ci
55

66
# Make an artifact which consists of the common code shared by Athena modules.
77
workspace-src:

utilities/docs-preview/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.5.26 AS docs-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.5.28 AS docs-ci
44

55
# update-docs-dev-script: get the latest docs dev script from CI.
66
update-docs-dev-script:
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/go:v3.5.26 AS go-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/go:v3.5.28 AS go-ci
44

55
IMPORT ../.. AS wasm
66

77
# build - build a wasm component from Golang
88
build:
9-
FROM go-ci+go-wasm-builder
9+
FROM go-ci+go-wasm-builder
1010

1111
WORKDIR /work
1212

@@ -15,13 +15,13 @@ build:
1515
COPY main.go go.mod .
1616
RUN go mod tidy
1717

18-
# `wkg wit build` uses `wkg.toml` to help resolve import dependencies.
18+
# `wkg wit build` uses `wkg.toml` to help resolve import dependencies.
1919
# This generate hermes:wasi.wasm
2020
RUN wkg wit build -d ./wit
2121

2222
# Generate go binding
2323
RUN wit-bindgen-go generate --world hermes --out binding ./hermes:wasi.wasm
24-
24+
2525
# Generate WASM component targeting WASM preview 2
2626
RUN tinygo build --target=wasip2 -o golang.wasm --wit-package hermes:wasi.wasm --wit-world hermes main.go
27-
SAVE ARTIFACT golang.wasm
27+
SAVE ARTIFACT golang.wasm

wasm/wasi/Earthfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.5.26 AS rust-ci
4-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/go:v3.5.26 AS go-ci
5-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.5.26 AS wasm-c-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.5.28 AS rust-ci
4+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/go:v3.5.28 AS go-ci
5+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/wasm/c:v3.5.28 AS wasm-c-ci
66

77
# Use when debugging cat-ci locally.
88
# IMPORT ../../catalyst-ci/earthly/rust AS rust-ci

0 commit comments

Comments
 (0)