Skip to content

Commit 7fd302b

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

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.circleci/config.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
ls -l
16+

.travis.yml

+20
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)