On 1/2/25 4:19 PM, Felix Huettner via dev wrote:
> From: Frode Nordahl <[email protected]>
> 
> Most dependencies are managed in the `prepare-container` job,
> but there are some host/system level dependencies.
> 
> This will be used by a subsequent patch that adds system tests
> that require the `vrf` kernel module to be loaded.
> 
> Signed-off-by: Frode Nordahl <[email protected]>
> ---

Hi Frode, Felix,

>  .github/workflows/test.yml | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
> index 463d717ef..eba20aaa8 100644
> --- a/.github/workflows/test.yml
> +++ b/.github/workflows/test.yml
> @@ -108,6 +108,11 @@ jobs:
>          - { arch: x86, compiler: gcc, opts: --disable-ssl }
>  
>      steps:
> +    - name: system-level-dependencies

Should we add

if: ${{ startsWith(matrix.cfg.testsuite, 'system-test') }}

here?

> +      run: |
> +        sudo apt update
> +        sudo apt -y install linux-modules-extra-$(uname -r)
> +
>      - name: checkout
>        if: github.event_name == 'push' || github.event_name == 'pull_request'
>        uses: actions/checkout@v4

Thanks,
Dumitru

_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to