Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
version: 2.0

references:
rust_cfg: &rust_cfg
docker:
- image: rust:1.32

jobs:
test-static:
<<: *rust_cfg
steps:
- checkout
- run:
name: Test OpenBLAS/FFTW backend
command: |
apt update && apt install -y gfortran
cargo test --no-default-features --features=static

test-intel-mkl:
<<: *rust_cfg
steps:
- checkout
- run:
name: Test Intel MKL backend
command: |
cargo test --no-default-features --features=intel-mkl

workflows:
version: 2
tests:
jobs:
- test-static
- test-intel-mkl
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Equation of Motions
====================
[![Crate](http://meritbadge.herokuapp.com/eom)](https://crates.io/crates/eom)
[![CircleCI](https://circleci.com/gh/termoshtt/eom/tree/master.svg?style=shield)](https://circleci.com/gh/termoshtt/eom/tree/master)
[![docs.rs](https://docs.rs/eom/badge.svg)](https://docs.rs/eom)
[![wercker status](https://app.wercker.com/status/e0dcece7b0ed4eb8d8c0e7101a449f02/s/master "wercker status")](https://app.wercker.com/project/byKey/e0dcece7b0ed4eb8d8c0e7101a449f02)
[![DOI](https://zenodo.org/badge/68349467.svg)](https://zenodo.org/badge/latestdoi/68349467)

`eom` crate is a configurable ODE/PDE solver
Expand Down
13 changes: 0 additions & 13 deletions wercker.yml

This file was deleted.