File tree Expand file tree Collapse file tree 3 files changed +11
-45
lines changed Expand file tree Collapse file tree 3 files changed +11
-45
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
strategy :
10
10
matrix :
11
- example : [examples/HelloHttp/HelloHttp.cpp]
11
+ default_example : [examples/HelloHttp/HelloHttp.cpp]
12
+ no_flash_no_auth_example : [examples/HelloHttp/HelloHttp.cpp]
12
13
13
14
steps :
14
15
- uses : actions/checkout@v2
29
30
run : |
30
31
python -m pip install --upgrade pip
31
32
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
33
38
run : pio ci --lib="." --project-conf="platformio.ini"
34
39
env :
35
40
PLATFORMIO_CI_SRC : ${{ matrix.example }}
41
+ PLATFORMIO_BUILD_FLAGS : -D ARDUINO_HTTP_SERVER_NO_FLASH -D ARDUINO_HTTP_SERVER_NO_BASIC_AUTH
42
+
43
+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# ArduinoHttpServer
2
2
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 )
5
4
[ ![ Code Climate] ( https://codeclimate.com/github/QuickSander/ArduinoHttpServer/badges/gpa.svg )] ( https://codeclimate.com/github/QuickSander/ArduinoHttpServer )
6
5
[ ![ Test Coverage] ( https://codeclimate.com/github/QuickSander/ArduinoHttpServer/badges/coverage.svg )] ( https://codeclimate.com/github/QuickSander/ArduinoHttpServer/coverage )
7
6
8
7
9
-
10
-
11
8
* Server side minimalistic Object Oriented HTTP protocol implementation for the Arduino platform.*
12
9
13
10
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).
You can’t perform that action at this time.
0 commit comments