Skip to content

Commit 25e1622

Browse files
committed
Migrate away from Travis
1 parent b0e8a2d commit 25e1622

File tree

3 files changed

+11
-45
lines changed

3 files changed

+11
-45
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
example: [examples/HelloHttp/HelloHttp.cpp]
11+
default_example: [examples/HelloHttp/HelloHttp.cpp]
12+
no_flash_no_auth_example: [examples/HelloHttp/HelloHttp.cpp]
1213

1314
steps:
1415
- uses: actions/checkout@v2
@@ -29,7 +30,14 @@ jobs:
2930
run: |
3031
python -m pip install --upgrade pip
3132
pip install --upgrade platformio
32-
- name: Run PlatformIO
33+
- name: Run PlatformIO - Default Example
34+
run: pio ci --lib="." --project-conf="platformio.ini"
35+
env:
36+
PLATFORMIO_CI_SRC: ${{ matrix.default_example }}
37+
- name: Run PlatformIO - No Auth, No Flash Example
3338
run: pio ci --lib="." --project-conf="platformio.ini"
3439
env:
3540
PLATFORMIO_CI_SRC: ${{ matrix.example }}
41+
PLATFORMIO_BUILD_FLAGS: -D ARDUINO_HTTP_SERVER_NO_FLASH -D ARDUINO_HTTP_SERVER_NO_BASIC_AUTH
42+
43+

.travis.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
# ArduinoHttpServer
22

3-
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/d6c43caaa5e24ebd9cf2119ac7963ce6)](https://app.codacy.com/app/QuickSander/ArduinoHttpServer?utm_source=github.com&utm_medium=referral&utm_content=QuickSander/ArduinoHttpServer&utm_campaign=Badge_Grade_Dashboard)
4-
[![Build Status](https://travis-ci.org/QuickSander/ArduinoHttpServer.svg?branch=master)](https://travis-ci.org/QuickSander/ArduinoHttpServer)
3+
![GitHub Actions](https://github.com/github/QuickSander/ArduinoHttpServer/workflows/main.yml/badge.svg)
54
[![Code Climate](https://codeclimate.com/github/QuickSander/ArduinoHttpServer/badges/gpa.svg)](https://codeclimate.com/github/QuickSander/ArduinoHttpServer)
65
[![Test Coverage](https://codeclimate.com/github/QuickSander/ArduinoHttpServer/badges/coverage.svg)](https://codeclimate.com/github/QuickSander/ArduinoHttpServer/coverage)
76

87

9-
10-
118
*Server side minimalistic Object Oriented HTTP protocol implementation for the Arduino platform.*
129

1310
ArduinoHttpServer is a simple HTTP request and reply implementation targeted for the embedded Arduino framework. The implementation parses an HTTP request/reply reading/printing from/to any Stream (either Serial or Wifi/Ethernet).

0 commit comments

Comments
 (0)