From 226c5997a18dde84c3e33288115de5c291de9662 Mon Sep 17 00:00:00 2001 From: Ian Stanton Date: Wed, 16 Oct 2024 21:01:24 -0400 Subject: [PATCH] Install build-essential Signed-off-by: Ian Stanton --- .github/workflows/cargo-test.yaml | 2 ++ conductor/Cargo.lock | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cargo-test.yaml b/.github/workflows/cargo-test.yaml index 85ba34c99..4c09c5de6 100644 --- a/.github/workflows/cargo-test.yaml +++ b/.github/workflows/cargo-test.yaml @@ -63,6 +63,8 @@ jobs: - name: Cargo format and clippy run: | set -xe + sudo apt-get update + sudo apt-get install build-essential cd ${{ matrix.path }} cargo --version cargo fmt --all --check diff --git a/conductor/Cargo.lock b/conductor/Cargo.lock index b4a3e48ad..556ffb787 100644 --- a/conductor/Cargo.lock +++ b/conductor/Cargo.lock @@ -874,7 +874,7 @@ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" [[package]] name = "controller" -version = "0.50.0" +version = "0.50.2" dependencies = [ "actix-web", "anyhow",