From 6841a649d8ab9dfa33bfe85064580a7d7de552f0 Mon Sep 17 00:00:00 2001 From: Adam McQuilkin <46639306+ajmcquilkin@users.noreply.github.com> Date: Mon, 22 Jan 2024 17:42:34 -0800 Subject: [PATCH] Added required Ubuntu dependencies to testing flow --- .github/workflows/testing.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index f5c957f..617e638 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -29,6 +29,12 @@ jobs: - name: Install Rust stable uses: dtolnay/rust-toolchain@stable + - name: Install dependencies (Ubuntu only) + if: matrix.platform == 'ubuntu-20.04' + run: | + sudo apt-get update + sudo apt-get install -y libdbus-1-dev pkg-config + - name: Run test suite working-directory: ./ run: cargo test