Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
synnefo
Commits
faaf1c17
Commit
faaf1c17
authored
Dec 16, 2013
by
Ilias Tsitsimpis
Browse files
snf-ci: Don't install kamaki from pypi
parent
f0581f5b
Changes
3
Hide whitespace changes
Inline
Side-by-side
ci/ci_squeeze.conf
View file @
faaf1c17
...
...
@@ -61,10 +61,6 @@ ssh_keys = ~/.ssh/id_rsa.pub
# Maybe add some burnin options
# (e.g. tests to run/ignore, timeouts etc)
cmd_options
= --
images
"name:.*"
--
flavors
"name:C1R512D2file"
--
no
-
ipv6
# Kamaki version to be used (leave empty for default)
# In some cases there is the need for a specific version
# of kamaki to be used.
kamaki_version
=
0
.
11
next
-
1858
-
1
d7368b
[
Unit
Tests
]
...
...
ci/ci_wheezy.conf
View file @
faaf1c17
...
...
@@ -65,10 +65,6 @@ private_networks =
# Maybe add some burnin options
# (e.g. tests to run/ignore, timeouts etc)
cmd_options
= --
images
"name:.*"
--
flavors
"name:C1R512D2file"
--
no
-
ipv6
# Kamaki version to be used (leave empty for default)
# In some cases there is the need for a specific version
# of kamaki to be used.
kamaki_version
=
0
.
12
rc2
[
Unit
Tests
]
...
...
ci/utils.py
View file @
faaf1c17
...
...
@@ -774,13 +774,12 @@ class SynnefoCI(object):
def
build_packages
(
self
):
"""Build packages needed by Synnefo software"""
self
.
logger
.
info
(
"Install development packages"
)
kamaki_version
=
self
.
config
.
get
(
'Burnin'
,
'kamaki_version'
)
cmd
=
"""
apt-get update
apt-get install zlib1g-dev dpkg-dev debhelper git-buildpackage
\
python-dev python-all python-pip ant --yes --force-yes
pip install -U devflow
kamaki{0}
"""
.
format
((
"=="
+
kamaki_version
)
if
kamaki_version
else
""
)
pip install -U devflow
"""
_run
(
cmd
,
False
)
# Patch pydist bug
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment