Skip to content

Commit

Permalink
Merge branch 'feat/ci_env_var' of github.com:input-output-hk/catalyst…
Browse files Browse the repository at this point in the history
…-ci into feat/ci_env_var
  • Loading branch information
damian-molinski committed Nov 5, 2024
2 parents 42520a1 + e23813a commit 113695b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
8 changes: 8 additions & 0 deletions earthly/cddl/Earthfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
VERSION 0.8

# cspell: words cddlc

cddl-base:
FROM ruby:3.3.0-alpine

RUN gem install cddlc
2 changes: 1 addition & 1 deletion earthly/rust/scripts/std_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def main():
results.add(exec_manager.cli_run("cargo machete", name="Unused Dependencies Check"))
# Check if we have any supply chain issues with dependencies.
results.add(
exec_manager.cli_run("cargo deny check --exclude-dev -W vulnerability", name="Supply Chain Issues Check")
exec_manager.cli_run("cargo deny check --exclude-dev -W vulnerability -W unmaintained", name="Supply Chain Issues Check")
)

results.print()
Expand Down
9 changes: 4 additions & 5 deletions earthly/rust/stdcfgs/deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@ targets = [

[advisories]
version = 2
ignore = [
{ id = "RUSTSEC-2020-0168", reason = "`mach` is used by wasmtime and we have no control over that." },
{ id = "RUSTSEC-2021-0145", reason = "we don't target windows, and don't use a custom global allocator." },
{ id = "RUSTSEC-2024-0370", reason = "`proc-macro-error` is used by crates we rely on, we can't control what they use."},
]
ignore = []

[bans]
multiple-versions = "warn"
Expand Down Expand Up @@ -58,6 +54,9 @@ allow-git = [
"https://github.com/input-output-hk/catalyst-mithril.git",
"https://github.com/bytecodealliance/wasmtime",
"https://github.com/aldanor/hdf5-rust",
"https://github.com/txpipe/vrf",
"https://github.com/txpipe/kes",
"https://github.com/txpipe/curve25519-dalek",
]

[licenses]
Expand Down
9 changes: 4 additions & 5 deletions examples/rust/deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@ targets = [

[advisories]
version = 2
ignore = [
{ id = "RUSTSEC-2020-0168", reason = "`mach` is used by wasmtime and we have no control over that." },
{ id = "RUSTSEC-2021-0145", reason = "we don't target windows, and don't use a custom global allocator." },
{ id = "RUSTSEC-2024-0370", reason = "`proc-macro-error` is used by crates we rely on, we can't control what they use."},
]
ignore = []

[bans]
multiple-versions = "warn"
Expand Down Expand Up @@ -58,6 +54,9 @@ allow-git = [
"https://github.com/input-output-hk/catalyst-mithril.git",
"https://github.com/bytecodealliance/wasmtime",
"https://github.com/aldanor/hdf5-rust",
"https://github.com/txpipe/vrf",
"https://github.com/txpipe/kes",
"https://github.com/txpipe/curve25519-dalek",
]

[licenses]
Expand Down

0 comments on commit 113695b

Please sign in to comment.