|
@@ -16,7 +16,7 @@ jobs:
|
16
|
16
|
run: |
|
17
|
17
|
python -m pip install --upgrade pip
|
18
|
18
|
pip install PyQt5
|
19
|
|
- pip install py2exe
|
|
19
|
+ pip install py2app
|
20
|
20
|
- name: Run Mac build
|
21
|
21
|
run: |
|
22
|
22
|
./build_mac.sh
|
|
@@ -26,6 +26,7 @@ jobs:
|
26
|
26
|
name: octotray_mac
|
27
|
27
|
path: |
|
28
|
28
|
${{ github.workspace }}/build/dist/OctoTray_Mac.zip
|
|
29
|
+
|
29
|
30
|
build_windows:
|
30
|
31
|
runs-on: windows-latest
|
31
|
32
|
steps:
|
|
@@ -39,7 +40,7 @@ jobs:
|
39
|
40
|
run: |
|
40
|
41
|
python -m pip install --upgrade pip
|
41
|
42
|
pip install PyQt5
|
42
|
|
- pip install py2exe
|
|
43
|
+ pip install pyinstaller
|
43
|
44
|
shell: bash
|
44
|
45
|
- name: Run Windows build
|
45
|
46
|
run: |
|
|
@@ -54,3 +55,27 @@ jobs:
|
54
|
55
|
name: octotray_win
|
55
|
56
|
path: |
|
56
|
57
|
${{ github.workspace }}/build/dist/OctoTray_Win.zip
|
|
58
|
+
|
|
59
|
+ build_linux:
|
|
60
|
+ runs-on: ubuntu-latest
|
|
61
|
+ steps:
|
|
62
|
+ - name: Checkout repository
|
|
63
|
+ uses: actions/checkout@v2
|
|
64
|
+ - name: Install Python Environment
|
|
65
|
+ uses: actions/setup-python@v2
|
|
66
|
+ with:
|
|
67
|
+ python-version: 3.8
|
|
68
|
+ - name: Install dependencies
|
|
69
|
+ run: |
|
|
70
|
+ python -m pip install --upgrade pip
|
|
71
|
+ pip install PyQt5
|
|
72
|
+ pip install pyinstaller
|
|
73
|
+ - name: Run Linux build
|
|
74
|
+ run: |
|
|
75
|
+ ./build_linux.sh
|
|
76
|
+ - name: Archive build result artifacts
|
|
77
|
+ uses: actions/upload-artifact@v2
|
|
78
|
+ with:
|
|
79
|
+ name: octotray_linux
|
|
80
|
+ path: |
|
|
81
|
+ ${{ github.workspace }}/build/dist/OctoTray_Linux.zip
|