From a4d58e2f594a5aee0b0adabc0b044a8c16f729a7 Mon Sep 17 00:00:00 2001 From: Theo Hill Date: Mon, 8 Jul 2024 14:37:18 -0700 Subject: [PATCH] Install gpio-sim to github runner Now that there's a test that uses gpio-sim, we need the kernel module in the runner environment for it to work. Currently this points to a fixed kernel build, which is kind of clunky. --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e24f0b..f4bc2d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Install gpio-sim + run: | + sudo apt-get update + sudo apt-get install linux-modules-extra-6.5.0-1021-azure - name: Build run: cargo build --verbose - name: Run fmt