File tree 2 files changed +10
-0
lines changed 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
29
29
30
30
### Changed
31
31
32
+ - #807 - update Qemu to 6.1.0 on images using Ubuntu 18.04+.
32
33
- #775 - forward Cargo exit code to host
33
34
- #762 - re-enabled ` x86_64-unknown-dragonfly ` target.
34
35
- #747 - reduced android image sizes.
Original file line number Diff line number Diff line change @@ -170,6 +170,15 @@ main() {
170
170
libpixman-1-dev \
171
171
libselinux1-dev \
172
172
zlib1g-dev
173
+
174
+ # if we have python3.6+, we can install qemu 6.1.0, which needs ninja-build
175
+ # ubuntu 16.04 only provides python3.5, so remove when we have a newer qemu.
176
+ is_ge_python36=$( python3 -c " import sys; print(int(sys.version_info >= (3, 6)))" )
177
+ if [[ " ${is_ge_python36} " == " 1" ]]; then
178
+ if_ubuntu version=6.1.0
179
+ if_ubuntu install_packages ninja-build
180
+ fi
181
+
173
182
local td
174
183
td=" $( mktemp -d) "
175
184
You can’t perform that action at this time.
0 commit comments