Skip to content

Implement VirtIO GPU and input devices #114

Implement VirtIO GPU and input devices

Implement VirtIO GPU and input devices #114

Workflow file for this run

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-get install libpixman-1-dev
sudo apt-get install expect
- name: default build
run: make
shell: bash
- name: Setup xvfb for screen 0
run: Xvfb :1 -screen 0 1600x1200x24 &
- name: automated test
run: .ci/autorun.sh
env:

Check failure on line 24 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 24, Col: 11): Unexpected value '' .github/workflows/main.yml (Line: 25, Col: 7): Unexpected value 'DISPLAY'
DISPLAY: :1
shell: bash
- name: Tear down xvfb
run: killall Xvfb
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