diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..3fdb4cc86d247f1d10753ef102e4eb9060d30d6b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,36 @@ +sudo: required +language: python +python: + - "3.7-dev" +compiler: gcc +dist: xenial +notifications: + email: false + +before_install: + - git submodule init + - git submodule update + +install: + - sudo apt-get install gcc make + +script: + - sudo service network-manager start + - mkdir build + - cd build + - cmake + - make + - cp ../test/* ./ + - python3.7 main_test.py + - python3.7 test_b58.py + - python3.7 test_b64.py + - python3.7 test_iaes256_cbc.py + - python3.7 test_oaes.py + + +addons: + apt: + sources: + - ubuntu-toolchain-r-test + packages: + - network-manager