-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: disable testbed CI in cardano-chain-follower crate (#7)
* Update Earthfile * feat: add CI job for docs * Update index.md * Update project.dic * Update Earthfile * chore: clean up
- Loading branch information
Showing
3 changed files
with
19 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -176,6 +176,7 @@ rlib | |
rulelist | ||
rulename | ||
RULENAME | ||
runable | ||
rustc | ||
rustdoc | ||
rustdocflags | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 17 additions & 17 deletions
34
rust/cardano-chain-follower/testbed/overhead_benchmark/Earthfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
VERSION 0.8 | ||
# VERSION 0.8 | ||
|
||
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mithril_snapshot:v3.1.24 AS mithril-snapshot-ci | ||
IMPORT ../../../.. AS hermes | ||
# IMPORT github.com/input-output-hk/catalyst-ci/earthly/mithril_snapshot:v3.1.24 AS mithril-snapshot-ci | ||
# IMPORT ../../../.. AS hermes | ||
|
||
build: | ||
FROM hermes+builder | ||
# build: | ||
# FROM hermes+builder | ||
|
||
WORKDIR crates/cardano-chain-follower/testbed | ||
RUN cargo build -p overhead_benchmark --release | ||
# WORKDIR crates/cardano-chain-follower/testbed | ||
# RUN cargo build -p overhead_benchmark --release | ||
|
||
SAVE ARTIFACT target/release/overhead_benchmark overhead_benchmark | ||
# SAVE ARTIFACT target/release/overhead_benchmark overhead_benchmark | ||
|
||
local-run-preprod: | ||
ARG --required BENCH_NAME | ||
# local-run-preprod: | ||
# ARG --required BENCH_NAME | ||
|
||
FROM +build | ||
# FROM +build | ||
|
||
COPY --dir mithril-snapshot-ci+package-preprod-snapshot/snapshot/immutable mithril_snapshot | ||
COPY +build/overhead_benchmark overhead_benchmark_bin | ||
RUN ./overhead_benchmark_bin --bench-name $BENCH_NAME --mithril-snapshot-path ./mithril_snapshot | ||
# COPY --dir mithril-snapshot-ci+package-preprod-snapshot/snapshot/immutable mithril_snapshot | ||
# COPY +build/overhead_benchmark overhead_benchmark_bin | ||
# RUN ./overhead_benchmark_bin --bench-name $BENCH_NAME --mithril-snapshot-path ./mithril_snapshot | ||
|
||
local-save-preprod-snapshot: | ||
FROM mithril-snapshot-ci+package-preprod-snapshot | ||
SAVE ARTIFACT immutable AS LOCAL local_preprod_mithril_snapshot | ||
# local-save-preprod-snapshot: | ||
# FROM mithril-snapshot-ci+package-preprod-snapshot | ||
# SAVE ARTIFACT immutable AS LOCAL local_preprod_mithril_snapshot |