Some checks failed
CI / build (push) Failing after 19s
The setup-python action defaults to /Users/runner which doesn't exist on self-hosted runners. Set RUNNER_TOOL_CACHE to a writable temp path.
48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
name: Compile Release
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
env:
|
|
RUNNER_TOOL_CACHE: ${{ runner.temp }}/tool_cache
|
|
|
|
jobs:
|
|
build-release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/.cache/pip
|
|
~/.platformio/.cache
|
|
key: ${{ runner.os }}-pio
|
|
|
|
- name: Set up Python tool cache directory
|
|
run: mkdir -p "$RUNNER_TOOL_CACHE"
|
|
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
|
|
- name: Install PlatformIO Core
|
|
run: pip install --upgrade platformio
|
|
|
|
- name: Build CrossPoint
|
|
run: pio run -e gh_release
|
|
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: CrossPoint-${{ github.ref_name }}
|
|
path: |
|
|
.pio/build/gh_release/bootloader.bin
|
|
.pio/build/gh_release/firmware.bin
|
|
.pio/build/gh_release/firmware.elf
|
|
.pio/build/gh_release/firmware.map
|
|
.pio/build/gh_release/partitions.bin
|