From cb3c472cfcc55f8637b7c5a214f0f56349eb9677 Mon Sep 17 00:00:00 2001 From: wiiznokes <78230769+wiiznokes@users.noreply.github.com> Date: Mon, 27 May 2024 18:16:02 +0200 Subject: [PATCH] add deps for CI --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 84ffaff3..0ac5bd73 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,9 @@ jobs: - run: rustup update - uses: taiki-e/install-action@just - uses: Swatinem/rust-cache@v2 + - name: Install deps + if: startsWith(matrix.os, 'ubuntu') + run: sudo apt-get update && sudo apt-get install pkg-config libxkbcommon-dev - name: Build libsensors on Ubuntu if: startsWith(matrix.os, 'ubuntu') @@ -71,6 +74,9 @@ jobs: - run: rustup update - uses: taiki-e/install-action@just - uses: Swatinem/rust-cache@v2 + - name: Install deps + if: startsWith(matrix.os, 'ubuntu') + run: sudo apt-get update && sudo apt-get install pkg-config libxkbcommon-dev - name: Build libsensors on Ubuntu if: startsWith(matrix.os, 'ubuntu')