Some checks failed
Build Matrix / Build (esp32s3, Seeed XIAO ESP32-S3 + Wio SX1262, seeed_xiao_s3_wio_sx1262) (push) Has been cancelled
CI/CD / Lint and Format Check (push) Has been cancelled
Build Matrix / Build (esp32s3, Heltec WiFi LoRa 32 V3 (ESP32-S3, SX1262), heltec_v3) (push) Has been cancelled
CI/CD / Unit Tests (push) Has been cancelled
CI/CD / Build heltec_v3 (push) Has been cancelled
CI/CD / Build seeed_xiao_s3_wio_sx1262 (push) Has been cancelled
CI/CD / Publish Packages (push) Has been cancelled
CI/CD / Build Summary (push) Has been cancelled
- Upload firmware binaries as build artifacts (5-day retention) - Add publish-packages job to collect, rename with timestamp, and publish to Gitea - Firmware named as: board-<unix-timestamp>.bin - Publishes to Gitea generic package registry only on main branch push - Include package publishing in CI summary status check
139 lines
3.8 KiB
YAML
139 lines
3.8 KiB
YAML
name: CI/CD
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint and Format Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Install pre-commit
|
|
run: pip install pre-commit
|
|
|
|
- name: Run pre-commit
|
|
run: pre-commit run --all-files
|
|
|
|
test:
|
|
name: Unit Tests
|
|
runs-on: ubuntu-latest
|
|
needs: [ lint ]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install pyserial pytest
|
|
|
|
- name: Run integration tests (client validation)
|
|
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 ${{ matrix.target }}
|
|
runs-on: ubuntu-latest
|
|
needs: [ test ]
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target:
|
|
- 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: Cache PlatformIO
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ~/.platformio
|
|
key: ${{ runner.os }}-platformio-${{ hashFiles('**/platformio.ini') }}
|
|
|
|
- name: Install PlatformIO
|
|
run: pip install platformio
|
|
|
|
- name: Build ${{ matrix.target }}
|
|
run: pio run -e ${{ matrix.target }}
|
|
|
|
- name: Upload firmware artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: firmware-${{ matrix.target }}
|
|
path: .pio/build/${{ matrix.target }}/firmware.bin
|
|
retention-days: 5
|
|
|
|
publish-packages:
|
|
name: Publish Packages
|
|
runs-on: ubuntu-latest
|
|
needs: [ build ]
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
steps:
|
|
- uses: actions/download-artifact@v4
|
|
with:
|
|
path: artifacts
|
|
|
|
- name: Publish firmware packages to Gitea
|
|
run: |
|
|
TIMESTAMP=$(date +%s)
|
|
|
|
# Create package directory
|
|
mkdir -p packages
|
|
|
|
# Collect and rename all firmware binaries
|
|
for dir in artifacts/firmware-*/; do
|
|
board_name=$(basename "$dir" | sed 's/^firmware-//')
|
|
cp "$dir/firmware.bin" "packages/${board_name}-${TIMESTAMP}.bin"
|
|
echo "📦 Prepared: ${board_name}-${TIMESTAMP}.bin"
|
|
done
|
|
|
|
# Upload each firmware to Gitea generic package registry
|
|
for bin_file in packages/*.bin; do
|
|
filename=$(basename "$bin_file")
|
|
echo "⬆️ Publishing $filename..."
|
|
|
|
curl -X POST \
|
|
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \
|
|
-F "file=@${bin_file}" \
|
|
"${{ gitea.server_url }}/api/packages/${{ gitea.repository_owner }}/generic/firmware/${{ github.ref_name }}/${filename}"
|
|
done
|
|
|
|
summary:
|
|
name: Build Summary
|
|
runs-on: ubuntu-latest
|
|
needs: [ lint, test, build, publish-packages ]
|
|
if: always()
|
|
steps:
|
|
- name: Check status
|
|
run: |
|
|
if [ "${{ needs.lint.result }}" = "failure" ] || [ "${{ needs.test.result }}" = "failure" ] || [ "${{ needs.build.result }}" = "failure" ]; then
|
|
echo "❌ CI failed"
|
|
exit 1
|
|
fi
|
|
if [ "${{ needs.publish-packages.result }}" != "skipped" ] && [ "${{ needs.publish-packages.result }}" = "failure" ]; then
|
|
echo "⚠️ Build succeeded but package publishing failed"
|
|
exit 1
|
|
fi
|
|
echo "✅ All checks passed"
|