Skip to content

Commit

Permalink
mirgate to Circle CI 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gentryx committed Nov 5, 2018
1 parent fb6e316 commit cd6fde9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 12 deletions.
25 changes: 25 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,25 @@
version: 2
jobs:
build:
docker:
- image: "debian:stretch"
steps:
- checkout
- run: mkdir build
- run: sudo apt-get update && sudo apt-get install -y openmpi-bin
- run: cd build && make
test:
docker:
- image: "debian:stretch"
steps:
- checkout
- run: mkdir build
- run: sudo apt-get update && sudo apt-get install -y openmpi-bin
- run: cd build && make tests
- run: cd build && make check
workflows:
version: 2
build_and_test:
jobs:
- build
- test
12 changes: 0 additions & 12 deletions circle.yml

This file was deleted.

0 comments on commit cd6fde9

Please sign in to comment.