test: use older qemu version for travis compatibility

This commit is contained in:
Erik Arvstedt 2020-05-04 12:01:17 +02:00 committed by Jonas Nick
parent 026a22fcee
commit b9f07bf706
No known key found for this signature in database
GPG Key ID: 4861DBF262123605
1 changed files with 6 additions and 1 deletions

View File

@ -3,6 +3,11 @@ testArgs:
let
pkgs = import <nixpkgs> { config = {}; overlays = []; };
pkgs19_09 = import (pkgs.fetchzip {
url = "https://github.com/NixOS/nixpkgs-channels/archive/a7ceb2536ab11973c59750c4c48994e3064a75fa.tar.gz";
sha256 = "0hka65f31njqpq7i07l22z5rs7lkdfcl4pbqlmlsvnysb74ynyg1";
}) { config = {}; overlays = []; };
test = (import "${pkgs.path}/nixos/tests/make-test-python.nix") testArgs;
fixedTest = { system ? builtins.currentSystem, ... }@args:
@ -22,7 +27,7 @@ let
# QEMU 4.20 from unstable fails on Travis build nodes with message
# "error: failed to set MSR 0x48b to 0x159ff00000000"
# Use version 4.0.1 instead.
inherit (pkgs) qemu_test;
inherit (pkgs19_09) qemu_test;
};
in
test (args // { pkgs = pkgsFixed; });