OLD | NEW |
1 # Copy this file to build.cfg and edit it. | 1 # Copy this file to build.cfg and edit it. |
2 # | 2 # |
3 # This configuration file holds the KVM build test config parameters. | 3 # This configuration file holds the KVM build test config parameters. |
4 # The default is noinstall (won't attempt to build KVM), so if you stick with it | 4 # The default is noinstall (won't attempt to build KVM), so if you stick with it |
5 # please make sure: | 5 # please make sure: |
6 # 1) You have setup symbolic links to qemu and qemu-img binaries on the | 6 # 1) You have setup symbolic links to qemu and qemu-img binaries on the |
7 # KVM test dir. | 7 # KVM test dir. |
8 # 2) The appropriate KVM modules are already loaded on your machine. | 8 # 2) The appropriate KVM modules are already loaded on your machine. |
9 | 9 |
| 10 vm_type = kvm |
| 11 |
10 variants: | 12 variants: |
11 - build: | 13 - build: |
12 type = build | 14 type = build |
13 # Load modules built/installed by the build test? | 15 # Load modules built/installed by the build test? |
14 load_modules = no | 16 load_modules = no |
15 # Save the results of this build on test.resultsdir? | 17 # Save the results of this build on test.resultsdir? |
16 save_results = no | 18 save_results = no |
17 variants: | 19 variants: |
18 - release: | 20 - release: |
19 install_mode = release | 21 install_mode = release |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 ## Name of the rpms we need installed | 108 ## Name of the rpms we need installed |
107 pkg_list = ['qemu-kvm', 'qemu-kvm-tools', 'qemu-system-x86', 'qe
mu-common', 'qemu-img'] | 109 pkg_list = ['qemu-kvm', 'qemu-kvm-tools', 'qemu-system-x86', 'qe
mu-common', 'qemu-img'] |
108 ## Paths of the qemu relevant executables that should be checked | 110 ## Paths of the qemu relevant executables that should be checked |
109 qemu_bin_paths = ['/usr/bin/qemu-kvm', '/usr/bin/qemu-img'] | 111 qemu_bin_paths = ['/usr/bin/qemu-kvm', '/usr/bin/qemu-img'] |
110 | 112 |
111 | 113 |
112 # Choose your install method here. The variant noinstall is not defined by | 114 # Choose your install method here. The variant noinstall is not defined by |
113 # default, so therefore no attempt to build/install KVM will be made by | 115 # default, so therefore no attempt to build/install KVM will be made by |
114 # default | 116 # default |
115 only build.noinstall | 117 only build.noinstall |
OLD | NEW |