Show More
@@ -44,8 +44,7 b' node {' | |||||
44 | } |
|
44 | } | |
45 | stage('setup') { |
|
45 | stage('setup') { | |
46 | def virtualenvscript = """$activatevirtualenv |
|
46 | def virtualenvscript = """$activatevirtualenv | |
47 | pip install --upgrade -e . |
|
47 | pip install --upgrade -e . -r dev_requirements.txt | |
48 | pip install -r dev_requirements.txt |
|
|||
49 | python setup.py compile_catalog |
|
48 | python setup.py compile_catalog | |
50 | """ |
|
49 | """ | |
51 | if (isUnix()) { |
|
50 | if (isUnix()) { |
@@ -35,8 +35,7 b' To get started with Kallithea developmen' | |||||
35 | virtualenv ../kallithea-venv |
|
35 | virtualenv ../kallithea-venv | |
36 | source ../kallithea-venv/bin/activate |
|
36 | source ../kallithea-venv/bin/activate | |
37 | pip install --upgrade pip setuptools |
|
37 | pip install --upgrade pip setuptools | |
38 | pip install --upgrade -e . |
|
38 | pip install --upgrade -e . -r dev_requirements.txt | |
39 | pip install --upgrade -r dev_requirements.txt |
|
|||
40 | kallithea-cli config-create my.ini |
|
39 | kallithea-cli config-create my.ini | |
41 | kallithea-cli db-create -c my.ini --user=user --email=user@example.com --password=password --repos=/tmp |
|
40 | kallithea-cli db-create -c my.ini --user=user --email=user@example.com --password=password --repos=/tmp | |
42 | kallithea-cli front-end-build |
|
41 | kallithea-cli front-end-build |
@@ -19,8 +19,7 b' virtualenv -p python2 "$venv"' | |||||
19 | . "$venv/bin/activate" |
|
19 | . "$venv/bin/activate" | |
20 |
|
20 | |||
21 | echo "Install/verify tools needed for building and uploading stuff" |
|
21 | echo "Install/verify tools needed for building and uploading stuff" | |
22 | pip install --upgrade -e . |
|
22 | pip install --upgrade -e . -r dev_requirements.txt twine | |
23 | pip install --upgrade -r dev_requirements.txt twine |
|
|||
24 |
|
23 | |||
25 | echo "Cleanup and update copyrights ... and clean checkout" |
|
24 | echo "Cleanup and update copyrights ... and clean checkout" | |
26 | scripts/run-all-cleanup |
|
25 | scripts/run-all-cleanup |
@@ -37,9 +37,7 b' for rev in $(hg log -r "$1" -T \'{node}\\n' | |||||
37 | virtualenv -p "$(command -v python2)" "$venv" |
|
37 | virtualenv -p "$(command -v python2)" "$venv" | |
38 | source "$venv/bin/activate" |
|
38 | source "$venv/bin/activate" | |
39 | pip install --upgrade pip setuptools |
|
39 | pip install --upgrade pip setuptools | |
40 | pip install -e . |
|
40 | pip install -e . -r dev_requirements.txt python-ldap python-pam | |
41 | pip install -r dev_requirements.txt |
|
|||
42 | pip install python-ldap python-pam |
|
|||
43 |
|
41 | |||
44 | # run-all-cleanup |
|
42 | # run-all-cleanup | |
45 | scripts/run-all-cleanup |
|
43 | scripts/run-all-cleanup |
General Comments 0
You need to be logged in to leave comments.
Login now