ci: add schism build #96
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
name: PlatformIO CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
env: | |
VERSION_REF: ${{ github.ref_type == 'tag' && github.ref_name || github.sha }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- env: c53 | |
bin_ext: uf2 | |
- env: b0xx_r4 | |
bin_ext: uf2 | |
- env: glyph | |
bin_ext: uf2 | |
- env: pico | |
bin_ext: uf2 | |
- env: schism | |
bin_ext: uf2 | |
- env: arduino_uno | |
bin_ext: hex | |
- env: arduino_nano | |
bin_ext: hex | |
- env: arduino_mega | |
bin_ext: hex | |
- env: arduino_leonardo | |
bin_ext: hex | |
- env: arduino_micro | |
bin_ext: hex | |
- env: b0xx_r1 | |
bin_ext: hex | |
- env: b0xx_r2 | |
bin_ext: hex | |
- env: gccmx | |
bin_ext: hex | |
- env: gccpcb1 | |
bin_ext: hex | |
- env: gccpcb2 | |
bin_ext: hex | |
- env: lbx | |
bin_ext: hex | |
- env: smashbox | |
bin_ext: hex | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install PlatformIO | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade platformio | |
- name: Build ${{ matrix.env }} env | |
run: | | |
pio run -e ${{ matrix.env }} | |
mkdir -p ${{ matrix.env }} | |
cp ".pio/build/${{ matrix.env }}/firmware.${{ matrix.bin_ext }}" "${{ matrix.env }}/HayBox-${VERSION_REF}-${{ matrix.env }}.${{ matrix.bin_ext }}" | |
- name: Publish ${{ matrix.env }} artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: HayBox-${{ env.VERSION_REF }}-${{ matrix.env }}.${{ matrix.bin_ext }} | |
path: ${{ matrix.env }}/HayBox-${{ env.VERSION_REF }}-${{ matrix.env }}.${{ matrix.bin_ext }} | |
- name: Upload binaries to release | |
uses: softprops/action-gh-release@v1 | |
if: github.ref_type == 'tag' | |
with: | |
files: ${{ matrix.env }}/HayBox-${{ env.VERSION_REF }}-${{ matrix.env }}.${{ matrix.bin_ext }} |