From a9f9dc241dec728be0bf17dac73eb548ba12ee94 Mon Sep 17 00:00:00 2001 From: realbigsean Date: Fri, 27 Oct 2023 10:21:47 +0000 Subject: [PATCH] restore cargo vendor in test suite (#4886) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Issue Addressed resolves https://github.com/sigp/lighthouse/issues/4440 ## Proposed Changes restore our `cargo vendor` test in CI changes to `c-kzg` here mean we no longer have to compile it twice and get duplicate source errors: https://github.com/sigp/lighthouse/pull/4862 Co-authored-by: realbigsean --- .github/workflows/test-suite.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 1e81544e81..69fb0969c2 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -364,10 +364,8 @@ jobs: run: make arbitrary-fuzz - name: Run cargo audit run: make audit-CI -# TODO(sean): re-enable this when we can figure it out with c-kzg -# Issue: https://github.com/sigp/lighthouse/issues/4440 -# - name: Run cargo vendor to make sure dependencies can be vendored for packaging, reproducibility and archival purpose -# run: CARGO_HOME=$(readlink -f $HOME) make vendor + - name: Run cargo vendor to make sure dependencies can be vendored for packaging, reproducibility and archival purpose + run: CARGO_HOME=$(readlink -f $HOME) make vendor check-msrv: name: check-msrv runs-on: ubuntu-latest