Skip to content
Snippets Groups Projects
Commit 95bf07fc authored by Axel von Arnim's avatar Axel von Arnim Committed by Manos Angelidis
Browse files

Merged in NRRPLT-6586_MakefileNoVpn (pull request #2)


[NRRPLT-6586] Makefile uses no VPN anymore

Approved-by: default avatarManos Angelidis <angelidis@fortiss.org>
parent 59ef50ed
No related branches found
No related tags found
No related merge requests found
...@@ -16,17 +16,19 @@ PYTHON_PIP_VERSION?=pip==9.0.3 ...@@ -16,17 +16,19 @@ PYTHON_PIP_VERSION?=pip==9.0.3
##### DO NOT MODIFY BELOW ##################### ##### DO NOT MODIFY BELOW #####################
ifeq ($(NRP_INSTALL_MODE),user) ifeq ($(NRP_INSTALL_MODE),user)
$(shell cp -af $(HBP)/user-scripts/config_files/platform_venv/* $(VIRTUAL_ENV)/lib/python2.7/site-packages/ )
include user_makefile include user_makefile
else else
CI_REPO?=ssh://bbpcode.epfl.ch/platform/ContinuousIntegration.git $(shell cp -af $(HBP)/user-scripts/config_files/platform_venv/* $(VIRTUAL_ENV)/lib/python2.7/site-packages/ )
CI_DIR?=ContinuousIntegration CI_REPO?=git@bitbucket.org:hbpneurorobotics/admin-scripts.git
CI_DIR?=$(HBP)/admin-scripts/ContinuousIntegration
THIS_DIR:=$(PWD)
FETCH_CI := $(shell \ FETCH_CI := $(shell \
if [ ! -d $(CI_DIR) ]; then \ if [ ! -d $(CI_DIR) ]; then \
git clone $(CI_REPO) $(CI_DIR) > /dev/null ;\ cd $(HBP) && git clone $(CI_REPO) > /dev/null && cd $(THIS_DIR);\
fi;\ fi;\
echo $(CI_DIR) ) echo $(CI_DIR) )
include $(FETCH_CI)/python/common_makefile include $(FETCH_CI)/python/common_makefile
endif endif
...@@ -16,7 +16,6 @@ pipelines: ...@@ -16,7 +16,6 @@ pipelines:
- cd $BITBUCKET_CLONE_DIR - cd $BITBUCKET_CLONE_DIR
# Configure build # Configure build
- ln -s $HBP/admin-scripts/ContinuousIntegration
- export VIRTUAL_ENV_PATH=$VIRTUAL_ENV - export VIRTUAL_ENV_PATH=$VIRTUAL_ENV
- export NRP_INSTALL_MODE=dev - export NRP_INSTALL_MODE=dev
- export PYTHONPATH=hbp_nrp_virtual_coach:$VIRTUAL_ENV_PATH/lib/python2.7/site-packages:$PYTHONPATH - export PYTHONPATH=hbp_nrp_virtual_coach:$VIRTUAL_ENV_PATH/lib/python2.7/site-packages:$PYTHONPATH
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment