Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 17 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ on:
- develop
paths-ignore:
- .git*
- '**.md'
- 'library.properties'
- 'library.json'
- "**.md"
- "library.properties"
- "library.json"
pull_request:
branches:
- main
- develop
paths-ignore:
- .git*
- '**.md'
- 'library.properties'
- 'library.json'
- "**.md"
- "library.properties"
- "library.json"

jobs:
build-wifi:
name: 'Build Test (WiFi): ${{matrix.board.arch}}:${{matrix.board.name}}'
name: "Build Test (WiFi): ${{matrix.board.arch}}:${{matrix.board.name}}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -41,6 +41,9 @@ jobs:
- vendor: rp2040
arch: rp2040
name: rpipicow
- vendor: rp2040
arch: rp2040
name: rpipico2w
include:
- index: https://arduino.esp8266.com/stable/package_esp8266com_index.json
board:
Expand Down Expand Up @@ -114,7 +117,7 @@ jobs:
verbose: true

build-wifinina:
name: 'Build Test (WiFiNINA): ${{matrix.board.arch}}:${{matrix.board.name}}'
name: "Build Test (WiFiNINA): ${{matrix.board.arch}}:${{matrix.board.name}}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -162,7 +165,7 @@ jobs:
verbose: true

build-ethernet:
name: 'Build Test (Ethernet): ${{matrix.board.arch}}:${{matrix.board.name}}'
name: "Build Test (Ethernet): ${{matrix.board.arch}}:${{matrix.board.name}}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -201,6 +204,9 @@ jobs:
- vendor: rp2040
arch: rp2040
name: rpipicow
- vendor: rp2040
arch: rp2040
name: rpipico2w
- vendor: teensy
arch: avr
name: teensy35
Expand Down Expand Up @@ -251,7 +257,7 @@ jobs:
verbose: true

build-ethernet-uno:
name: 'Build Test (Ethernet): avr:uno'
name: "Build Test (Ethernet): avr:uno"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -275,7 +281,7 @@ jobs:
verbose: true

build-eth:
name: 'Build Test (ETH): ${{matrix.board.arch}}:${{matrix.board.name}}'
name: "Build Test (ETH): ${{matrix.board.arch}}:${{matrix.board.name}}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion ArduinoOSCWiFi.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#if defined(ESP_PLATFORM) || defined(ESP8266) || defined(ARDUINO_AVR_UNO_WIFI_REV2) \
|| defined(ARDUINO_SAMD_MKRWIFI1010) || defined(ARDUINO_SAMD_MKRVIDOR4000) || defined(ARDUINO_SAMD_MKR1000) \
|| defined(ARDUINO_SAMD_NANO_33_IOT) || defined(ARDUINO_RASPBERRY_PI_PICO_W) || defined(ARDUINO_UNOR4_WIFI) \
|| defined(ARDUINO_GIGA)
|| defined(ARDUINO_GIGA) || defined(ARDUINO_RASPBERRY_PI_PICO_2W)
#define ARDUINOOSC_ENABLE_WIFI
#endif

Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"url": "https://github.com/hideakitai",
"maintainer": true
},
"version": "0.5.1",
"version": "0.5.2",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ArduinoOSC
version=0.5.1
version=0.5.2
author=hideakitai
maintainer=hideakitai
sentence=OSC subscriber / publisher for Arduino
Expand Down
Loading