Skip to content

Commit

Permalink
add STM32 test target. (#13)
Browse files Browse the repository at this point in the history
* add STM32 test target.

* sync yaml.
  • Loading branch information
dojyorin authored Nov 9, 2023
1 parent 1f87cdb commit ede89a7
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"jobs": {
"release": {
"name": "Release: ${{github.ref_name}}",
"name": "release: ${{github.ref_name}}",
"runs-on": "ubuntu-latest",
"steps": [{
"name": "clone repository",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
tags: v[0-9]+.[0-9]+.[0-9]+
jobs:
release:
name: 'Release: ${{github.ref_name}}'
name: 'release: ${{github.ref_name}}'
runs-on: ubuntu-latest
steps:
- name: clone repository
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/test.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"jobs": {
"test": {
"name": "Test: ${{matrix.board.name}}",
"name": "test: ${{matrix.board.name}}",
"runs-on": "ubuntu-latest",
"strategy": {
"fail-fast": true,
Expand All @@ -37,6 +37,10 @@
"vendor": "adafruit",
"arch": "samd",
"name": "adafruit_trinket_m0"
}, {
"vendor": "STMicroelectronics",
"arch": "stm32",
"name": "GenH5"
}, {
"vendor": "teensy",
"arch": "avr",
Expand All @@ -52,6 +56,11 @@
"board": {
"vendor": "adafruit"
}
}, {
"index": "https://github.com/stm32duino/BoardManagerFiles/raw/main/package_stmicroelectronics_index.json",
"board": {
"vendor": "STMicroelectronics"
}
}, {
"index": "https://www.pjrc.com/teensy/package_teensy_index.json",
"board": {
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- '*.properties'
jobs:
test:
name: 'Test: ${{matrix.board.name}}'
name: 'test: ${{matrix.board.name}}'
runs-on: ubuntu-latest
strategy:
fail-fast: true
Expand All @@ -28,6 +28,9 @@ jobs:
- vendor: adafruit
arch: samd
name: adafruit_trinket_m0
- vendor: STMicroelectronics
arch: stm32
name: GenH5
- vendor: teensy
arch: avr
name: teensy41
Expand All @@ -38,6 +41,9 @@ jobs:
- index: https://adafruit.github.io/arduino-board-index/package_adafruit_index.json
board:
vendor: adafruit
- index: https://github.com/stm32duino/BoardManagerFiles/raw/main/package_stmicroelectronics_index.json
board:
vendor: STMicroelectronics
- index: https://www.pjrc.com/teensy/package_teensy_index.json
board:
vendor: teensy
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name=base64_encode
author=dojyorin
version=2.0.2
version=2.0.3
architectures=*
includes=arduino_base64.hpp
sentence=Convert between binary and base64 encoded string.
Expand Down

0 comments on commit ede89a7

Please sign in to comment.