[DO NOT MERGE] Test for kernel drivers #4
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| #------------------------------------------------------------------------------ | |
| # QEMU OpenTitan CI | |
| # | |
| # Copyright (c) 2023-2025 Rivos, Inc. | |
| # SPDX-License-Identifier: Apache License 2.0 | |
| #------------------------------------------------------------------------------ | |
| name: Test kernel modules | |
| on: | |
| - pull_request | |
| - workflow_dispatch | |
| jobs: | |
| test-usb: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Install deps | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y linux-headers-generic | |
| sudo sed -i 's/^Types: deb$/Types: deb deb-src/' /etc/apt/sources.list.d/ubuntu.sources | |
| apt-get source linux-image-unsigned-$(uname -r) | |
| ls -l |