-
-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (32 loc) · 1.04 KB
/
linux.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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-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