Skip to content

lower linux version

lower linux version #4

Workflow file for this run

# This is a workflow for building the kasa_cli executable on all three major platforms.
name: Build-Linux
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab 
workflow_dispatch:
jobs:
build-mdp-p906:
runs-on: ubuntu-18.04
steps:
- name: Build MDP-P906
uses: sayyid5416/pyinstaller@v1
with:
python_ver: "3.11"
spec: "gui_source/mdp.spec"
requirements: "gui_source/requirements_linux.txt"
upload_exe_with_name: "MDP-P906"
compression_level: 9
build-mdp-p906-numba:
runs-on: ubuntu-18.04
steps:
- name: Build MDP-P906-Numba
uses: sayyid5416/pyinstaller@v1
with:
python_ver: "3.11"
spec: "gui_source/mdp_numba.spec"
requirements: "gui_source/requirements_linux.txt"
upload_exe_with_name: "MDP-P906-Numba"
compression_level: 9