This repository has been archived by the owner on Oct 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 140
/
.papr.sh
executable file
·82 lines (70 loc) · 1.95 KB
/
.papr.sh
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
#!/bin/bash
set -xeuo pipefail
NO_TEST=${NO_TEST:-}
if test -z "${INSIDE_CONTAINER:-}"; then
if [ -f /run/ostree-booted ]; then
# by default, the root LV on AH is only 3G, but we need a
# bit more for our tests
lvresize -r -L +5G atomicos/root || true
if grep -q ID=fedora /etc/os-release; then
if [ ! -e /var/tmp/ostree-unlock-ovl.* ]; then
ostree admin unlock
fi
else
# Until overlayfs and selinux get along, use remount
# instead of ostree admin unlock
if [ ! -w /usr ]; then
mount -o remount,rw /usr
fi
fi
else
dnf install -y atomic python3-coverage docker
fi
# Restarting docker helps with permissions related to above.
systemctl restart docker
# somewhat mimic the spec conditional
source /etc/os-release
if [ "$ID" == fedora ]; then
PYTHON=python3
else
PYTHON=python
fi
docker run --rm \
--privileged \
-v $PWD:/code \
-v /:/host \
--workdir /code \
-e INSIDE_CONTAINER=1 \
-e PYTHON=$PYTHON \
registry.fedoraproject.org/fedora:28 /code/.papr.sh
# run the testsuite on the host
if [ -z ${NO_TEST} ]; then
PYTHON=$PYTHON ./test.sh
fi
exit 0
fi
dnf install -y \
git \
make \
python2-pylint \
python3-pylint \
python3-slip-dbus \
python-gobject-base \
python-dbus \
pylint \
python-slip-dbus \
python2-docker \
python2-dateutil \
PyYAML \
rpm-python \
'dnf-command(builddep)' \
&& dnf builddep -y \
atomic \
&& dnf clean all
# pylint, build, and install in the container
if [ -z ${NO_TEST} ]; then
make pylint-check
make test-python3-pylint
fi
rm -rf /host/usr/bin/atomic /host/usr/lib/python*/site-packages/Atomic
make PYTHON=$PYTHON PYLINT=true install DESTDIR=/host