File: INSTALL.asciidoc

package info (click to toggle)
os-autoinst 4.3%2Bgit20160919-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 10,860 kB
  • ctags: 665
  • sloc: perl: 7,624; cpp: 1,584; python: 216; makefile: 188; sh: 63
file content (95 lines) | stat: -rw-r--r-- 3,240 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[[pragmatic-development-environment-on-opensuse]]
pragmatic development environment on openSUSE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

1.  install openQA package to get all the runtime dependencies as described in
the
https://github.com/os-autoinst/openQA/blob/master/docs/Installing.asciidoc[openQA
installation guide]
+
2.  check out os-autoinst
+
------------------------------------------------
git clone YOUR-WRITEABLE-COPY-OF/os-autoinst.git
cd os-autoinst
------------------------------------------------
3.  install the BuildRequires, as per the http://build.opensuse.org[spec
file]
+
-----------------------------------------------------------------------------------------------------------------------------------
sudo zypper in git-core make libtheora-devel opencv-devel fftw3-devel libsndfile-devel pkg-config libtool autoconf automake gcc-c++
-----------------------------------------------------------------------------------------------------------------------------------
4.  build the beastie locally
+
----------------
autoreconf -f -i
./configure
make
----------------
5.  get the test cases and the needles.
+
The needles have to be a subdir of the test cases!
+
-----------------------------------------------------------------------------
mkdir distri
cd distri
git clone git@github.com:os-autoinst/os-autoinst-distri-opensuse.git opensuse
cd opensuse
git clone git@github.com:os-autoinst/os-autoinst-needles-opensuse.git needles
-----------------------------------------------------------------------------
6.  create a test dir to run os-autoinst in
+
--------------------------
mkdir /tmp/os-autoinst-run
cd /tmp/os-autoinst-run
--------------------------
7.  create a minimal "vars.json" config file
+
---------------------------------------------------------
cat <<EOF >vars.json
{
    "DISTRI":  "sle",
    "CASEDIR": "/space/SVN/os-autoinst-distri-opensuse/",
    "BACKEND": "s390x"
}
EOF
---------------------------------------------------------
8.  give it a shot
+
------------------------------
PATH_TO/os-autoinst/isotovideo
------------------------------
9.  hack away :)

[[use-of-git-repo-with-with-openqa]]
use of git repo with with openQA
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

to use os-autoinst with openQA it needs to be "installed". Placing a
symlink to /usr/lib/os-autoinst that points to the git checkout should
work. To make tests and needles writable don't touch distri/ and use
tools/fetchneedles instead to set it up.

[[opensuse-setup]]
openSUSE setup
~~~~~~~~~~~~~~

-------------------------------------------------------
zypper ar -r http://download.opensuse.org/repositories/devel:/openQA/openSUSE_Leap_42.1/devel:openQA.repo
zypper in os-autoinst

usermod -G kvm -a $USERNAME || usermod -A kvm $USERNAME
-------------------------------------------------------

[[more-linux-setup]]
more Linux setup
~~~~~~~~~~~~~~~~

-----------------------------------------------------------
modprobe kvm-intel || modprobe kvm-amd
chgrp kvm /dev/kvm ; chmod g+rw /dev/kvm # maybe redundant
# optionally use a new user; just to keep things separate
useradd -m USERNAME -G kvm
passwd USERNAME # and/or add ~USERNAME/.ssh/authorized_keys
-----------------------------------------------------------