06cbebe22e
* try to import mbedtls and build it * add stubs socket class * some boilterplate, read and write function implemented * more boilterplate / current error in handshake because no CA cert is setup * add something so skip ca verification, can ws curl https://google.com ! * cleanup / close implemented * tweak CMakefiles * typo in include * update readme * disable unittests
40 lines
750 B
YAML
40 lines
750 B
YAML
language: bash
|
|
|
|
# See https://github.com/amaiorano/vectrexy/blob/master/.travis.yml
|
|
# for ideas on installing vcpkg
|
|
|
|
matrix:
|
|
include:
|
|
# macOS
|
|
- os: osx
|
|
compiler: clang
|
|
script:
|
|
- python test/run.py
|
|
- make ws
|
|
|
|
# Linux
|
|
- os: linux
|
|
dist: xenial
|
|
script:
|
|
- python test/run.py
|
|
- make ws
|
|
env:
|
|
- CC=gcc
|
|
- CXX=g++
|
|
|
|
# Clang + Linux disabled for now
|
|
# - os: linux
|
|
# dist: xenial
|
|
# script: python test/run.py
|
|
# env:
|
|
# - CC=clang
|
|
# - CXX=clang++
|
|
|
|
# Windows
|
|
- os: windows
|
|
env:
|
|
- CMAKE_PATH="/c/Program Files/CMake/bin"
|
|
script:
|
|
- export PATH=$CMAKE_PATH:$PATH
|
|
- python test/run.py
|