forked from OxfordTechnicalSolutions/NCOMdecoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (32 loc) · 841 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
matrix:
include:
- os: linux
language: c
compiler: gcc
script:
- cd example
- make && ./NComToCsv 171019_031603.ncom 171019_031603.csv
- cd ..
- python test.py
- os: osx
language: c
compiler: gcc
script:
- cd example
- make && ./NComToCsv 171019_031603.ncom 171019_031603.csv
- cd ..
- python test.py
- os: windows
language: c
compiler: gcc
cache:
directories:
- $HOME/AppData/Local/Temp/chocolatey
before_install:
- choco install python --version 3.8.6
- export PATH="/c/Python38:/c/Python38/Scripts:$PATH"
script:
- cd example
- mingw32-make.exe && ./NComToCsv.exe 171019_031603.ncom 171019_031603.csv
- cd ..
- python test.py