Ken Van Hoeylandt 42e843b463
C++ conversions (#111)
* Remove version from artifact name
* Target C++ 20 and higher
* Use cpp string
* Better crash implementation
* String utils in cpp style
* Replace parameter methods with start() method
* MutexType to Mutex::Type
* Kernel c to cpp style
* Cleanup event flag
* More cpp conversions
* Test fixes
* Updated ideas docs
2024-12-07 12:24:28 +01:00

35 lines
793 B
YAML

name: Build
inputs:
board-name:
description: The name of the board
required: true
sdkconfig:
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: cp ${{ inputs.sdkconfig }} sdkconfig
- name: 'Build'
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: v5.3.1
target: ${{ inputs.arch }}
path: './'
- name: 'Upload Artifact'
uses: actions/upload-artifact@v4
with:
name: tactility-${{ inputs.board-name }}
path: build/Tactility.bin
retention-days: 5