Skip to content

Commit 2a43666

Browse files
Merge pull request #3 from scribam/qemu-8.0.0
Bump QEMU to 8.0.2
2 parents 85ed5af + 0b72e78 commit 2a43666

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Resources Changelog
22

3+
## Unreleased
4+
5+
### New/Changed Features
6+
7+
* Bump QEMU to 8.0.2
8+
39
## 0.7.0
410

511
### New/Changed Features

ci.rb

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class Qemu
1010
# Version of QEMU to bundle
11-
VERSION = "7.2.0"
11+
VERSION = "8.0.2"
1212

1313
# Map of canonicalized host architectures
1414
ALIASES = {
@@ -181,7 +181,6 @@ def build
181181
--disable-bochs
182182
--disable-bsd-user
183183
--disable-cfi-debug
184-
--disable-cocoa
185184
--disable-curses
186185
--disable-debug-info
187186
--disable-debug-mutex
@@ -224,7 +223,7 @@ def build
224223
.concat(ci_runner.qemu_build_flags)
225224

226225
execute "../configure", *args, env: { LDFLAGS: ldflags }
227-
execute "make"
226+
execute "make qemu-img qemu-system-aarch64 qemu-system-x86_64"
228227
execute "ls", "-lh"
229228
end
230229
ensure

ci.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ build_qemu() {
172172
--target-list="$(join , "${qemu_platforms[@]/%/-softmmu}")" \
173173
$build_flags
174174

175-
make
175+
make qemu-img qemu-system-aarch64 qemu-system-x86_64
176176
ls -lh
177177
popd > /dev/null
178178
}

0 commit comments

Comments
 (0)