Skip to content

Commit

Permalink
Strip everything away
Browse files Browse the repository at this point in the history
  • Loading branch information
guyer committed Dec 20, 2018
1 parent e12c1f2 commit 833f81e
Showing 1 changed file with 0 additions and 46 deletions.
46 changes: 0 additions & 46 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,47 +5,6 @@
version: 2

jobs:
build:
docker:
# specify the version you desire here
- image: continuumio/miniconda2

working_directory: ~/repo

steps:
- checkout

# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ arch }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run:
name: install dependencies
command: |
apt-get --yes update
apt-get --yes install build-essential
conda config --set always_yes yes --set changeps1 no
conda update -q conda
conda config --remove channels defaults
conda create -v --quiet --name test-environment --show-channel-urls --channel guyer --channel conda-forge python=2.7 numpy scipy gmsh pysparse mpi4py matplotlib mayavi fipytrilinos weave
source activate test-environment
conda info -a
pip install scikit-fmm
- save_cache:
paths:
- /.conda
key: v1-dependencies-{{ arch }}

- run:
name: install fipy
command: |
source activate test-environment
python setup.py install
test-27-pysparse:
docker:
# specify the version you desire here
Expand Down Expand Up @@ -153,10 +112,5 @@ workflows:

test:
jobs:
- build
- test-27-pysparse
requires:
- build
- test-27-scipy
requires:
- build

0 comments on commit 833f81e

Please sign in to comment.