From 902f7553d96f5177863e235a0a9466bd9f37a301 Mon Sep 17 00:00:00 2001 From: Diego Date: Mon, 18 Nov 2024 17:04:42 -0500 Subject: [PATCH] ingore warning in arbitrator CI --- .github/workflows/arbitrator-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/arbitrator-ci.yml b/.github/workflows/arbitrator-ci.yml index 44438e0433..7ca1836683 100644 --- a/.github/workflows/arbitrator-ci.yml +++ b/.github/workflows/arbitrator-ci.yml @@ -22,7 +22,7 @@ on: env: RUST_BACKTRACE: 1 - # RUSTFLAGS: -Dwarnings # TODO: re-enable after wasmer upgrade + RUSTFLAGS: -Dwarnings # TODO: re-enable after wasmer upgrade WABT_VERSION: 1.0.32 jobs: @@ -158,7 +158,7 @@ jobs: run: echo "$HOME/wabt-prefix/bin" >> "$GITHUB_PATH" - name: Make arbitrator libraries - run: make -j wasm-ci-build + run: RUSTFLAGS="-A warnings" make -j wasm-ci-build - name: Clippy check run: cargo clippy --all --manifest-path arbitrator/Cargo.toml -- -D warnings