From 98532577e8c386d757af92e8fb5235041d778c49 Mon Sep 17 00:00:00 2001 From: Rob Date: Tue, 14 Jan 2025 16:40:02 -0500 Subject: [PATCH] remove lock from sqlite build --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 64960a227..c59dbe807 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -105,7 +105,7 @@ jobs: cargo build --locked --release --workspace - name: Build sequencer-sqlite - run: cargo build --locked --release --manifest-path ./sequencer-sqlite/Cargo.toml --target-dir ./target + run: cargo build --release --manifest-path ./sequencer-sqlite/Cargo.toml --target-dir ./target - name: Build Espresso Dev Node # Espresso Dev Node currently requires testing feature, so it is built separately.