Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ElluIFX committed Dec 24, 2024
1 parent e2e3081 commit 6bada96
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# 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-latest
steps:
- name: Build MDP-P906
uses: sayyid5416/pyinstaller@v1
with:
python_ver: "3.11"
spec: "gui_source/mdp.spec"
requirements: "gui_source/requirements.txt"
upload_exe_with_name: "MDP-P906"
compression_level: 9

build-mdp-p906-numba:
runs-on: ubuntu-latest
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.txt"
upload_exe_with_name: "MDP-P906-Numba"
compression_level: 9
File renamed without changes.

0 comments on commit 6bada96

Please sign in to comment.