Skip to content

Commit d788376

Browse files
author
Wang, Gang(Gary)
committed
MNEMONIC-329: Travis Continuous Integration
MNEMONIC-331: Circle Continuous Integration
1 parent a4bb10e commit d788376

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.circleci/config.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
jobs:
3+
build:
4+
working_directory: /ws/incubator-mnemonic
5+
docker:
6+
- image: mnemonic/mne
7+
branches:
8+
only:
9+
- master
10+
steps:
11+
- checkout
12+
- run:
13+
name: Run tests
14+
command: |
15+
git log -1 --stat
16+
bin/runall.sh
17+
18+

.travis.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
language: python
2+
python:
3+
- 2.7
4+
5+
services:
6+
- docker
7+
8+
branches:
9+
only:
10+
- master
11+
- stable
12+
13+
install:
14+
- docker build -t mne docker/docker-Ubuntu
15+
16+
before_script:
17+
- pip install mock
18+
19+
script:
20+
- docker ps | grep -q mne

0 commit comments

Comments
 (0)