From c97165312071cdab169f26653e1a5c00a7477f1a Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Sat, 28 Dec 2019 22:35:36 +0100 Subject: [PATCH] Add GitHub Actions Linux/macOS builder CI --- .github/workflows/cpp.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/cpp.yml diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml new file mode 100644 index 0000000..2df433a --- /dev/null +++ b/.github/workflows/cpp.yml @@ -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 +