- travis CI uses g++ on Linux

This commit is contained in:
Benjamin Sergeant 2019-06-09 14:27:45 -07:00
parent 03b5a57474
commit b8c1176c79
2 changed files with 18 additions and 14 deletions

View File

@ -12,23 +12,23 @@ matrix:
- python test/run.py - python test/run.py
- make ws - make ws
# # Linux # Linux
# - os: linux
# dist: xenial
# script:
# - python test/run.py
# - make ws
# env:
# - CC=gcc
# - CXX=g++
# Clang + Linux disabled for now
- os: linux - os: linux
dist: xenial dist: xenial
script: python test/run.py script:
- python test/run.py
- make ws
env: env:
- CC=clang - CC=gcc
- CXX=clang++ - CXX=g++
# Clang + Linux disabled for now
# - os: linux
# dist: xenial
# script: python test/run.py
# env:
# - CC=clang
# - CXX=clang++
# Windows # Windows
- os: windows - os: windows

View File

@ -1,6 +1,10 @@
# Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [unreleased] - 2019-06-09
### Changed
- travis CI uses g++ on Linux
## [4.0.0] - 2019-06-09 ## [4.0.0] - 2019-06-09
### Changed ### Changed
- WebSocket::send() sends message in TEXT mode by default - WebSocket::send() sends message in TEXT mode by default