Squashed 'test/compatibility/C/uWebSockets/' content from commit 03681cc

git-subtree-dir: test/compatibility/C/uWebSockets
git-subtree-split: 03681ccbe630eb4db6322557e6bfe8cda8f41526
This commit is contained in:
Benjamin Sergeant
2020-01-04 15:41:03 -08:00
commit c992cb4e42
68 changed files with 9564 additions and 0 deletions

26
.github/workflows/cpp.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: C++ CI
on: [push]
jobs:
build_linux:
runs-on: ubuntu-latest
steps:
- name: Clone source
run: git clone --recursive https://github.com/uNetworking/uWebSockets.git
- name: Build source
run: make -C uWebSockets
build_osx:
runs-on: macos-latest
steps:
- name: Clone source
run: git clone --recursive https://github.com/uNetworking/uWebSockets.git
- name: Build source
run: make -C uWebSockets