Skip to content

Commit

Permalink
Update config.yml - fix Circle CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
DhanshreeA committed Oct 27, 2024
1 parent c1a974d commit 6677a22
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ version: 2
jobs:
installation:
docker:
- image: ersiliaos/conda:3.7
- image: continuumio/miniconda3:24.1.2-0
steps:
- checkout
- run:
name: Install with pip and git without developer mode
command: |
conda create -n ersilia python=3.10
source activate ersilia
pip install git+https://github.com/ersilia-os/ersilia.git
- run:
Expand All @@ -18,12 +19,13 @@ jobs:
ersilia --help
test:
docker:
- image: ersiliaos/conda:3.7
- image: continuumio/miniconda3:24.1.2-0
steps:
- checkout
- run:
name: Install ersilia package in developer mode
command: |
conda create -n ersilia python=3.10
source activate ersilia
pip install -U pip setuptools
python -m pip install -e .
Expand Down Expand Up @@ -66,13 +68,14 @@ jobs:
ersilia -v delete molecular-weight
docs-build:
docker:
- image: ersiliaos/conda:3.7
- image: continuumio/miniconda3:24.1.2-0
steps:
- checkout
- run:
name: Install dependencies
command: |
apt-get update
conda create -n ersilia python=3.10
source activate ersilia
pip install -U pip setuptools
pip install -e .[docs]
Expand Down

0 comments on commit 6677a22

Please sign in to comment.