forked from greiman/SdFat
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-Enable ci for m0/m4/rp2040/s2/s3 (#14)
* try to re-add ci * enable USE_SPI_ARRAY_TRANSFER and USE_UTF8_LONG_NAMES (if not avr) * add skip test and slightly update examples for passing ci for all platforms * add feather s3 * install RTClib for ci * install SD lib
- Loading branch information
Showing
42 changed files
with
180 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
name: Bug Report | ||
description: Report a problem | ||
labels: 'Bug' | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
It's okay to leave some blank if it doesn't apply to your problem. | ||
- type: dropdown | ||
attributes: | ||
label: Operating System | ||
options: | ||
- Linux | ||
- MacOS | ||
- RaspberryPi OS | ||
- Windows 7 | ||
- Windows 10 | ||
- Windows 11 | ||
- Others | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
attributes: | ||
label: IDE version | ||
placeholder: e.g Arduino 1.8.15 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
attributes: | ||
label: Board | ||
placeholder: e.g Feather nRF52840 Express | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
attributes: | ||
label: BSP version | ||
description: Can be found under "Board Manager" menu | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
attributes: | ||
label: SPIFlash Library version | ||
placeholder: "Release version or github latest" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Sketch | ||
placeholder: | | ||
e.g examples/flash_info | ||
If it is custom sketch, please provide links to your minimal sources or as attached files. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: What happened ? | ||
placeholder: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: How to reproduce ? | ||
placeholder: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. See error | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Debug Log | ||
placeholder: | | ||
Debug log where the issue occurred as attached txt file, best with comments to explain the actual events. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
attributes: | ||
label: Screenshots | ||
description: If applicable, add screenshots to help explain your problem. | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
contact_links: | ||
- name: Adafruit Support Forum | ||
url: https://forums.adafruit.com | ||
about: If you have other questions or need help, post it here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: Feature | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Build | ||
|
||
on: [pull_request, push, repository_dispatch] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
arduino-platform: | ||
- 'feather_esp32s2' | ||
- 'feather_esp32s3' | ||
- 'feather_rp2040' | ||
- 'metro_m0' | ||
- 'metro_m4' | ||
- 'nrf52840' | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Python | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Checkout adafruit/ci-arduino | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: adafruit/ci-arduino | ||
path: ci | ||
|
||
- name: pre-install | ||
run: bash ci/actions_install.sh | ||
|
||
- name: Install Libraries for building examples | ||
run: arduino-cli lib install RTClib SD | ||
|
||
- name: test platforms | ||
run: python3 ci/build_platform.py ${{ matrix.arduino-platform }} |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters