Skip to content
Snippets Groups Projects
Unverified Commit 48736ed1 authored by Stefano Borini's avatar Stefano Borini Committed by GitHub
Browse files

Merge pull request #181 from force-h2020/use-base-edm

Removed force-bootstrap from the travis environment. using default
parents 57dad0de 9ccc9f97
No related branches found
No related tags found
No related merge requests found
......@@ -8,15 +8,15 @@ before_install:
- export PATH=/usr/lib/ccache:${PATH}
- wget https://package-data.enthought.com/edm/rh5_x86_64/1.9/edm_1.9.2_linux_x86_64.sh && bash ./edm_1.9.2_linux_x86_64.sh -b -f -p $HOME
- export PATH=${HOME}/edm/bin:${PATH}
- edm install -y -e force-bootstrap click setuptools
- edm run -e force-bootstrap -- python -m ci build-env
- edm install --version 3.5 -y click setuptools
- edm run -- python -m ci build-env
script:
- edm run -e force-bootstrap -- python -m ci install
- edm run -e force-bootstrap -- python -m ci flake8
- edm run -e force-bootstrap -- python -m ci test
- edm run -e force-bootstrap -- python -m ci docs
- edm run -- python -m ci install
- edm run -- python -m ci flake8
- edm run -- python -m ci test
- edm run -- python -m ci docs
after_success:
- edm run -e force-bootstrap -- python -m ci coverage
- edm run -e force-bootstrap -- pip install codecov
- edm run -e force-bootstrap -- codecov
- edm run -- python -m ci coverage
- edm run -- pip install codecov
- edm run -- codecov
- bash <(curl -s https://codecov.io/bash)
......@@ -10,21 +10,30 @@ git repositories::
The last repository is optional, but recommended if you want to practice
writing plugins.
Next, download EDM package manager, and create a bootstrap environment.
We assume the bootstrap environment is the default one (called ``edm``)::
If you never installed the Enthought Deployment Manager, perform the following operations::
wget https://package-data.enthought.com/edm/rh5_x86_64/1.9/edm_1.9.2_linux_x86_64.sh && bash ./edm_1.9.2_linux_x86_64.sh -b -f -p $HOME
export PATH=${HOME}/edm/bin:${PATH}
edm install --version 3.5 -y pyyaml click setuptools
edm install --version 3.5 -y click setuptools
edm shell
Verify that your prompt changes to add "(edm)".
If you instead already have an EDM installation and a default environment, perform the following:
edm shell
edm install -y click setuptools
Verify that your shell prompt now contains the string "(edm)".
You are now in your default EDM environment, and we assume this environment to be the bootstrap environment.
The BDSS software will not be installed in this environment, but in a separate one. The following
commands however must be executed from the bootstrap environment.
Installation of the force BDSS runtime environment is performed with the
following command::
python -m ci build-env
This will create another edm environment called ``force-py35``.
Do not enter this environment.
To install the BDSS::
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment