setting up travis compilation

This commit is contained in:
Thomas Ferreira de Lima 2018-07-16 01:53:10 -04:00
parent 8330415b29
commit c269f39ba0
2 changed files with 22 additions and 0 deletions

18
.travis.yml Normal file
View File

@ -0,0 +1,18 @@
matrix:
include:
- os: osx
osx_image: xcode9.3beta
env:
- MATRIX_EVAL=""
before_install:
- eval "${MATRIX_EVAL}"
- brew update
- brew bundle
install:
- python3 setup.py install
script:
- python3 -c 'import klayout.db as db; dir(db)'
- python3 -c 'import klayout.rdb as rdb; dir(rdb)'
- python3 -c 'import klayout.tl as tl; dir(tl)'

4
Brewfile Normal file
View File

@ -0,0 +1,4 @@
tap "homebrew/core"
brew "python3"
brew "curl"
brew "expat"