LG-77 Update build system and remove the Docker container #145
This file contains 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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Python package | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
release: | |
types: [created] | |
workflow_dispatch: | |
inputs: | |
version_name: | |
description: 'Version used for manual triggering' | |
required: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
include: | |
# Mark below python version as the latest one | |
- python-version: '3.13' | |
python-latest: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set proto path | |
run: echo "PROTO_FOLDER=backend-apis/gateway_to_backend/protocol_buffers_files" >> $GITHUB_ENV | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
version: '29.x' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Generate proto files | |
run: | | |
protoc -I ${{ env.PROTO_FOLDER }} --python_out=./wirepas_mesh_messaging/proto ${{ env.PROTO_FOLDER }}/*.proto | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install flake8 pytest build | |
- name: Lint with flake8 | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --select=E9,F63,F7,F82 --ignore=F821 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Install wheel locally | |
run: pip install . | |
- name: Test with pytest | |
run: | | |
pytest tests/ | |
- name: Get short sha | |
uses: benjlevesque/[email protected] | |
id: short-sha | |
with: | |
length: 6 | |
- name: Set Version for master push | |
if: ${{ github.event_name == 'push' }} | |
run: echo "VERSION=0+${{ steps.short-sha.outputs.sha }}" >> $GITHUB_ENV | |
- name: Set Version for release | |
if: ${{ github.event_name == 'release' }} | |
run: echo "VERSION=${{ github.event.release.tag_name }}" >> $GITHUB_ENV | |
- name: Set Version for PR | |
if: ${{ github.event_name == 'pull_request' }} | |
run: echo "VERSION=0+PR_${{ github.event.pull_request.number }}" >> $GITHUB_ENV | |
- name: Set Version for manual triggering | |
if: ${{ github.event_name == 'workflow_dispatch' }} | |
run: echo "VERSION=${{ github.event.inputs.version_name }}" >> $GITHUB_ENV | |
- name: Set the version | |
run: | | |
sed -i '/__version__ = /c\__version__ = "${{ env.VERSION }}"' wirepas_mesh_messaging/__about__.py | |
- name: Build the wheel | |
run: python -m build . | |
- name: Save produced wheel name and path | |
run: echo "WHEEL_FILE=$(ls dist/*-py3-none-any.whl)" >> $GITHUB_ENV | |
- name: Store artifacts only for last matrix version | |
if: ${{ matrix.python-latest }} | |
uses: actions/upload-artifact@v4 | |
with: | |
path: ${{ env.WHEEL_FILE }} | |
# Produced wheels is same independently of python version | |
- name: Upload Wheel for releases only for last matrix version | |
if: ${{ github.event_name == 'release' && matrix.python-latest }} | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: ${{ env.WHEEL_FILE }} | |
asset_content_type: application/zip | |
asset_name: wirepas_mesh_messaging-${{ env.VERSION }}-py3-none-any.whl | |
- name: Publish package to PyPI for release | |
if: ${{ github.event_name == 'release' && matrix.python-latest }} | |
uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_PWD }} | |