release: OpenNet 0.2.1 Zenodo archival metadata #12
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| python: | |
| name: Python ${{ matrix.python-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: pip | |
| cache-dependency-path: python/pyproject.toml | |
| - run: python -m pip install -e "./python[dev]" | |
| - run: python -m pytest python | |
| - if: matrix.python-version == '3.14' | |
| run: | | |
| python -m ruff check python benchmarks scripts | |
| python -m mypy python/src | |
| python scripts/check_docs.py | |
| esp32: | |
| name: ESP32 Arduino examples | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | |
| with: | |
| python-version: "3.14" | |
| cache: pip | |
| - run: python -m pip install platformio | |
| - run: platformio run -e esp32dev | |
| - run: platformio ci examples/SecureTelemetryClient/SecureTelemetryClient.ino --board esp32dev --lib src | |
| - run: platformio ci examples/BluetoothSerialClient/BluetoothSerialClient.ino --board esp32dev --lib src | |
| arduino-native: | |
| name: Arduino native tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | |
| with: | |
| python-version: "3.14" | |
| - run: python -m pip install platformio | |
| - run: platformio test -e native | |
| package: | |
| name: Reproducible packages | |
| runs-on: ubuntu-latest | |
| env: | |
| SOURCE_DATE_EPOCH: "1700000000" | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 | |
| with: | |
| python-version: "3.14" | |
| cache: pip | |
| - run: python -m pip install build | |
| - run: python -m build python | |
| - run: python scripts/build_release.py | |
| - run: python scripts/build_linux_bundle.py | |
| - run: python scripts/build_checksums.py | |
| - run: python scripts/verify_reproducible.py | |
| - run: sh -n packaging/linux/install.sh packaging/linux/uninstall.sh | |
| - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: packages | |
| path: | | |
| dist/OpenNet-*.zip | |
| dist/OpenNet-linux-*.tar.gz | |
| dist/SHA256SUMS | |
| python/dist/* | |
| if-no-files-found: error |