Implement VirtIO GPU and input devices #113
This file contains 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
name: CI | |
on: [push, pull_request] | |
jobs: | |
rv32emu: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install-dependencies | |
run: | | |
sudo apt update | |
sudo apt-get install build-essential device-tree-compiler | |
sudo apt-get install libsdl2-dev libsdl2-2.0-0 libsdl2-image-dev libsdl2-image-2.0-0 | |
sudo apt install libpixman-1-dev | |
sudo apt-get install expect | |
- name: default build | |
run: make | |
shell: bash | |
- name: automated test | |
run: .ci/autorun.sh | |
shell: bash | |
coding_style: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: coding convention | |
run: | | |
sudo apt-get install -q -y clang-format-12 | |
.ci/check-format.sh | |
shell: bash |