From 3cc11350b87d5b4ae4790b0ed6fd7f8f38114c7a Mon Sep 17 00:00:00 2001 From: Casey Callendrello Date: Wed, 10 Mar 2021 17:15:40 +0100 Subject: [PATCH] CI: Install linux-modules-extra for VRF module Signed-off-by: Casey Callendrello --- .github/workflows/test.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index d5a243f4..85b983ec 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -31,6 +31,10 @@ jobs: name: Run tests on Linux amd64 runs-on: ubuntu-latest steps: + - name: Install kernel module + run: | + sudo apt-get update + sudo apt-get install linux-modules-extra-$(uname -r) - name: setup go uses: actions/setup-go@v2 with: