Skip to content

Migrate to the new meshtastic MQTT topics #55

Migrate to the new meshtastic MQTT topics

Migrate to the new meshtastic MQTT topics #55

Workflow file for this run

# This file is autogenerated by maturin v1.3.2
# To update, run
#
# maturin generate-ci github --platform linux
#
name: Linux Python CI
on:
push:
branches:
- master
tags:
- '*'
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
# target: [x86_64, aarch64, armv7]
target: [x86_64]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: 'false' # TODO: sccache is broken on 2_28
before-script-linux: yum install -y dbus-devel libudev-devel pkgconfig protobuf-devel protobuf-compiler && yum -y clean all
manylinux: 2_28
- name: Test the wheel
run: |
pip install yaroc --find-links dist --force-reinstall
pip install pytest
pytest
- name: Lint with ruff
run: |
pip install ruff
ruff check . --select=E9,F63,F7,F82 --statistics
ruff check . --exit-zero --statistics
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
release:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, sdist]
steps:
- uses: actions/download-artifact@v3
with:
name: wheels
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
env:
MATURIN_PYPI_TOKEN: ${{ secrets.TEST_PYPI_API_TOKEN }}
MATURIN_REPOSITORY: testpypi
with:
command: upload
args: --non-interactive --skip-existing *whl