From c5ca5aee4e668de3e4410e8698b73d40b9663fb9 Mon Sep 17 00:00:00 2001 From: Me No Dev Date: Sat, 21 Sep 2019 15:05:52 +0300 Subject: [PATCH 1/2] Enable Github CI --- .github/workflows/main.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..0ca72d5 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,32 @@ +name: Async TCP CI + +on: + push: + branches: + - master + - release/* + pull_request: + +jobs: + + build-arduino: + name: Build Arduino + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Build Tests + env: + TRAVIS_BUILD_DIR: ${{ github.workspace }} + run: bash $TRAVIS_BUILD_DIR/travis/build.sh + + build-pio: + name: Build PlatformIO + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Install Python Wheel + run: pip install wheel + - name: Build Tests + env: + TRAVIS_BUILD_DIR: ${{ github.workspace }} + run: bash $TRAVIS_BUILD_DIR/travis/build-pio.sh From c1dcba41d10ca80649eb6ed8cb7d914ae331c6c3 Mon Sep 17 00:00:00 2001 From: me-no-dev Date: Sat, 21 Sep 2019 15:09:58 +0300 Subject: [PATCH 2/2] Trigger travis also --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 023849b..00f3d72 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ Async TCP Library for ESP32 Arduino [![Join the chat at https://gitter.im/me-no-dev/ESPAsyncWebServer](https://badges.gitter.im/me-no-dev/ESPAsyncWebServer.svg)](https://gitter.im/me-no-dev/ESPAsyncWebServer?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[![Build Status](https://travis-ci.org/me-no-dev/AsyncTCP.svg?branch=master)](https://travis-ci.org/me-no-dev/AsyncTCP) + This is a fully asynchronous TCP library, aimed at enabling trouble-free, multi-connection network environment for Espressif's ESP32 MCUs. This library is the base for [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer)