Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
Signed-off-by: smtmfft <[email protected]>
  • Loading branch information
smtmfft committed Oct 29, 2024
1 parent e2afadb commit 74b7db0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion script/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ fi
# NATIVE
if [ -z "$1" ] || [ "$1" == "native" ]; then
if [ -n "${CLIPPY}" ]; then
cargo clippy -- -D warnings
cargo clippy -- -D warnings -F $TASKDB
elif [ -z "${RUN}" ]; then
if [ -z "${TEST}" ]; then
echo "Building native prover"
Expand Down
1 change: 1 addition & 0 deletions taskdb/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,7 @@ mod test {
})
.await
.unwrap()
.0
.len(),
1
);
Expand Down
2 changes: 2 additions & 0 deletions taskdb/tests/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ mod tests {
tama.enqueue_task(
&(
chain_id,
request.block_number,
blockhash,
request.proof_type,
request.prover.to_string(),
Expand Down Expand Up @@ -114,6 +115,7 @@ mod tests {
tama.enqueue_task(
&(
chain_id,
request.block_number,
blockhash,
request.proof_type,
request.prover.to_string(),
Expand Down

0 comments on commit 74b7db0

Please sign in to comment.