release espressif32 Arduino core 3.0.3 based on IDF 5.1.4
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
# Number of days of inactivity before an issue becomes stale
|
||||
daysUntilStale: 30
|
||||
# Number of days of inactivity before a stale issue is closed
|
||||
daysUntilClose: 7
|
||||
# Issues with these labels will never be considered stale
|
||||
exemptLabels:
|
||||
- bug
|
||||
- known issue
|
||||
- feature
|
||||
- enhancement
|
||||
- board request
|
||||
- package update
|
||||
# Label to use when marking an issue as stale
|
||||
staleLabel: stale
|
||||
# Comment to post when marking an issue as stale. Set to `false` to disable
|
||||
markComment: >
|
||||
This issue has been automatically marked as stale because it has not had
|
||||
recent activity. Please provide more details or it will be closed if no
|
||||
further activity occurs. Thank you for your contributions.
|
||||
# Comment to post when closing a stale issue. Set to `false` to disable
|
||||
closeComment: false
|
||||
@@ -1,21 +1,26 @@
|
||||
name: Examples
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
workflow_dispatch: # Manually start a workflow
|
||||
push:
|
||||
paths-ignore:
|
||||
- '.github/**' # Ignore changes towards the .github directory
|
||||
- '**.md' # Do no build if *.md files changes
|
||||
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
os: [ubuntu-22.04, windows-2022, macos-14]
|
||||
example:
|
||||
- "examples/arduino-ble5-advertising"
|
||||
- "examples/arduino-blink"
|
||||
- "examples/arduino-rmt-blink"
|
||||
- "examples/arduino-usb-keyboard"
|
||||
- "examples/arduino-wifiscan"
|
||||
- "examples/espidf-arduino-blink"
|
||||
- "examples/espidf-arduino-wifiscan"
|
||||
- "examples/espidf-ble-eddystone"
|
||||
- "examples/espidf-arduino-littlefs"
|
||||
- "examples/espidf-blink"
|
||||
- "examples/espidf-coap-server"
|
||||
- "examples/espidf-exceptions"
|
||||
- "examples/espidf-hello-world"
|
||||
@@ -23,20 +28,21 @@ jobs:
|
||||
- "examples/espidf-peripherals-uart"
|
||||
- "examples/espidf-peripherals-usb"
|
||||
- "examples/espidf-storage-sdcard"
|
||||
- "examples/espidf-storage-spiffs"
|
||||
- "examples/espidf-ulp-adc"
|
||||
- "examples/espidf-ulp-pulse"
|
||||
- "examples/espidf-ulp"
|
||||
- "examples/espidf-ulp-riscv"
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: "recursive"
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v3
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.9"
|
||||
python-version: "3.11"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install wheel
|
||||
pip install -U https://github.com/platformio/platformio/archive/develop.zip
|
||||
pio pkg install --global --platform symlink://.
|
||||
- name: Build examples
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
name: Create zip file with recursive source clone for release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 51*
|
||||
|
||||
jobs:
|
||||
release_zips:
|
||||
name: Create release zip file
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Create a recursive clone source zip
|
||||
uses: pioarduino/github-actions/release_zips@release_idf
|
||||
env:
|
||||
RELEASE_PROJECT_NAME: platform-espressif32
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
@@ -1,30 +0,0 @@
|
||||
name: "Unit Testing"
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
python-version: [3.9]
|
||||
example:
|
||||
- "examples/espidf-hello-world"
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: "recursive"
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -U https://github.com/platformio/platformio/archive/develop.zip
|
||||
pio pkg install --global --platform symlink://.
|
||||
- name: Build test
|
||||
run: |
|
||||
pio test -d ${{ matrix.example }} --without-uploading --without-testing
|
||||
Reference in New Issue
Block a user