Skip to content

Commit dbd06cd

Browse files
committed
Add GH workflow to build QEMU
1 parent bf06578 commit dbd06cd

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/qemu.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build QEMU
2+
on: [push, workflow_dispatch]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
9+
- name: Install dependencies
10+
run: sudo apt install -y libglib2.0-dev libfdt-dev libpixman-1-dev zlib1g-dev ninja-build
11+
12+
- name: Build QEMU
13+
run: |
14+
wget https://download.qemu.org/qemu-8.2.2.tar.xz
15+
tar -xf qemu-8.2.2.tar.xz
16+
cd qemu-8.2.2
17+
./configure
18+
make -j$(nproc)

0 commit comments

Comments
 (0)