diff --git a/.config/dictionaries/project.dic b/.config/dictionaries/project.dic index 72fd43b2035..5ba54627045 100644 --- a/.config/dictionaries/project.dic +++ b/.config/dictionaries/project.dic @@ -1,4 +1,5 @@ aarch +aapt addrr adminer androidx @@ -18,9 +19,11 @@ COCOAPODS codepoints coti cryptoxide +Cunego Cupertino dbsync delegators +DIND dockerhub dotenv dotenvy @@ -49,8 +52,10 @@ localizable mdlint mitigations moderations +multidex nanos netkey +nextest Oleksandr oneshot openapi @@ -71,13 +76,16 @@ pubkey pubspec rapidoc redoc +reqwest ripgrep rustc +rustls rxdart saibatizoku seckey slotno sqlfluff +Stefano stevenj subosito tacho diff --git a/catalyst-gateway/Earthfile b/catalyst-gateway/Earthfile index 1d1b422fc41..b03ff71daf9 100644 --- a/catalyst-gateway/Earthfile +++ b/catalyst-gateway/Earthfile @@ -4,9 +4,9 @@ VERSION 0.7 # Set up our target toolchains, and copy our files. builder: - FROM github.com/input-output-hk/catalyst-ci/earthly/rust:v2.0.12+rust-base + FROM github.com/input-output-hk/catalyst-ci/earthly/rust:v2.0.14+rust-base - DO github.com/input-output-hk/catalyst-ci/earthly/rust:v2.0.12+SETUP --toolchain=rust-toolchain.toml + DO github.com/input-output-hk/catalyst-ci/earthly/rust:v2.0.14+SETUP --toolchain=rust-toolchain.toml COPY --dir .cargo .config Cargo.* clippy.toml deny.toml rustfmt.toml bin crates tests . @@ -14,7 +14,7 @@ builder: check-hosted: FROM +builder - DO github.com/input-output-hk/catalyst-ci/earthly/rust:v2.0.12+CHECK + DO github.com/input-output-hk/catalyst-ci/earthly/rust:v2.0.14+CHECK # Test which runs check with all supported host tooling. Needs qemu or rosetta to run. # Only used to validate tooling is working across host toolsets. @@ -27,9 +27,9 @@ build-hosted: # Build the service FROM +builder - DO github.com/input-output-hk/catalyst-ci/earthly/rust:v2.0.12+BUILD --bins="cat-gateway/cat-gateway" + DO github.com/input-output-hk/catalyst-ci/earthly/rust:v2.0.14+BUILD --bins="cat-gateway/cat-gateway" - DO github.com/input-output-hk/catalyst-ci/earthly/rust:v2.0.12+SMOKE_TEST --bin="cat-gateway" + DO github.com/input-output-hk/catalyst-ci/earthly/rust:v2.0.14+SMOKE_TEST --bin="cat-gateway" SAVE ARTIFACT target/$TARGETARCH/doc doc SAVE ARTIFACT target/$TARGETARCH/release/cat-gateway cat-gateway @@ -43,7 +43,7 @@ unit-test-hosted: # Build the service FROM +builder - DO github.com/input-output-hk/catalyst-ci/earthly/rust:v2.0.12+UNIT_TEST + DO github.com/input-output-hk/catalyst-ci/earthly/rust:v2.0.14+UNIT_TEST SAVE ARTIFACT target/nextest/ci/junit.xml junit-report.xml SAVE ARTIFACT coverage-report.info coverage-report.info diff --git a/catalyst-gateway/tests/Cargo.toml b/catalyst-gateway/tests/Cargo.toml index 7a6faf6d424..f275f22358d 100644 --- a/catalyst-gateway/tests/Cargo.toml +++ b/catalyst-gateway/tests/Cargo.toml @@ -1,5 +1,3 @@ -#cspell: words Stefano Cunego - [package] name = "tests" version = "0.1.0" diff --git a/catalyst-gateway/tests/Earthfile b/catalyst-gateway/tests/Earthfile index 9ab9da319b6..8419ef1a281 100644 --- a/catalyst-gateway/tests/Earthfile +++ b/catalyst-gateway/tests/Earthfile @@ -1,13 +1,11 @@ VERSION 0.7 -#cspell: words nextest - integration-test: # Example of a setup for integration testing -# the cat-gatway binary will be replaced by the cat-gatway package when this will be avalaible +# the cat-gateway binary will be replaced by the cat-gateway package when this will be available FROM ../+builder - DO github.com/earthly/lib+INSTALL_DIND + DO github.com/earthly/lib:2.2.11+INSTALL_DIND COPY ../+build-hosted/cat-gateway . COPY integration/docker-compose.yml . WITH DOCKER \ diff --git a/catalyst-gateway/tests/integration/catalyst_gateway_event_db.rs b/catalyst-gateway/tests/integration/catalyst_gateway_event_db.rs index 84eaab219c8..a0aba239d61 100644 --- a/catalyst-gateway/tests/integration/catalyst_gateway_event_db.rs +++ b/catalyst-gateway/tests/integration/catalyst_gateway_event_db.rs @@ -1,4 +1,3 @@ -// // Integration test example // #[tokio::test]