mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
* **New Features** * Expanded public device and driver APIs (accessors, sync, lifecycle, binding) and a module construct+start helper. * Added kernel symbol registry and new exported symbols (lvgl, C++ nothrow, I2S APIs, additional math funcs). * **Refactor** * Renamed device traversal APIs for consistency (device_for_each*). * Moved inline helpers to explicit public declarations. * **Chores** * Replaced several shell release scripts with Python-based SDK release tooling. * **Style** * Header naming consistency fixes.
39 lines
941 B
YAML
39 lines
941 B
YAML
name: Build
|
|
|
|
inputs:
|
|
board_id:
|
|
description: The sdkconfig file to build
|
|
required: true
|
|
arch:
|
|
description: The ESP32 SOC variant
|
|
required: true
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
- name: 'Board select'
|
|
shell: bash
|
|
run: python device.py ${{ inputs.board_id }}
|
|
- name: 'Build'
|
|
uses: espressif/esp-idf-ci-action@v1
|
|
with:
|
|
# NOTE: Update with ESP-IDF!
|
|
esp_idf_version: v5.5
|
|
target: ${{ inputs.arch }}
|
|
path: './'
|
|
- name: 'Release'
|
|
shell: bash
|
|
env:
|
|
# NOTE: Update with ESP-IDF!
|
|
ESP_IDF_VERSION: '5.5'
|
|
run: python Buildscripts/release-sdk.py release/TactilitySDK
|
|
- name: 'Upload Artifact'
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: TactilitySDK-${{ inputs.arch }}
|
|
path: release/TactilitySDK
|
|
retention-days: 30
|