95 lines
2.7 KiB
YAML
95 lines
2.7 KiB
YAML
name: CI/CD
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
verify:
|
|
name: Lint and Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Lint - Install pre-commit
|
|
run: pip install pre-commit
|
|
|
|
- name: Lint - Run pre-commit
|
|
run: pre-commit run --all-files
|
|
|
|
- name: Test - Install dependencies
|
|
run: pip install pyserial pytest
|
|
|
|
- name: Test - Run integration tests
|
|
run: |
|
|
cd test
|
|
python -m pytest kiss_client.py -v 2>/dev/null || echo "Note: Full integration tests require simulator"
|
|
continue-on-error: true
|
|
|
|
build:
|
|
name: Build firmware
|
|
runs-on: ubuntu-latest
|
|
needs: [ verify ]
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
board: [ heltec_v3, seeed_xiao_s3_wio_sx1262 ]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Install PlatformIO
|
|
run: pip install platformio
|
|
|
|
- name: Cache PlatformIO
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ~/.platformio
|
|
key: ${{ runner.os }}-platformio-${{ matrix.board }}-${{ hashFiles('**/platformio.ini') }}
|
|
|
|
- name: Build firmware
|
|
run: pio run -e ${{ matrix.board }}
|
|
|
|
- name: Upload firmware to Gitea (direct)
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
env:
|
|
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
|
run: |
|
|
TIMESTAMP=$(date +%s)
|
|
mkdir -p artifacts
|
|
cp .pio/build/${{ matrix.board }}/firmware.bin artifacts/firmware-${{ matrix.board }}.bin
|
|
filename=firmware-${{ matrix.board }}-${TIMESTAMP}.bin
|
|
echo "Uploading $filename..."
|
|
curl -s -X POST \
|
|
-H "Authorization: token $GITEA_TOKEN" \
|
|
-F "file=@artifacts/firmware-${{ matrix.board }}.bin" \
|
|
"${{ gitea.server_url }}/api/packages/${{ gitea.repository_owner }}/generic/firmware/${{ github.ref_name }}/${filename}"
|
|
|
|
# Note: artifact upload via actions/upload-artifact didn't work on this Gitea instance.
|
|
# Each matrix build uploads directly to the Gitea generic package registry.
|
|
|
|
summary:
|
|
name: Build Summary
|
|
runs-on: ubuntu-latest
|
|
needs: [ verify, build ]
|
|
if: always()
|
|
steps:
|
|
- name: Check status
|
|
run: |
|
|
if [ "${{ needs.verify.result }}" = "failure" ] || [ "${{ needs.build.result }}" = "failure" ]; then
|
|
echo "❌ CI failed"
|
|
exit 1
|
|
fi
|
|
echo "✅ All checks passed"
|