File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -199,3 +199,36 @@ jobs:
199199 if-no-files-found : error
200200 name : File Find.bin
201201 path : dist/File Find.bin
202+
203+ build-linux-arm :
204+ name : " Building Linux App (ARM)"
205+ runs-on : ubuntu-24.04-arm
206+
207+ steps :
208+ - name : Setup
209+ uses : actions/checkout@v4
210+
211+ - name : Install Python 3.12
212+ uses : actions/setup-python@v5
213+ with :
214+ python-version : " 3.12"
215+
216+ - name : Install dependencies
217+ run : |
218+ # Installing python dependencies
219+ python -m pip install --upgrade pip
220+ pip install -r requirements.txt
221+
222+ - name : Build app with nuitka
223+ run : |
224+ # Building File Find
225+ python3 build.py
226+
227+
228+ # Upload app
229+ - name : Upload File Find.app
230+ uses : actions/upload-artifact@v4
231+ with :
232+ if-no-files-found : error
233+ name : File Find arm.bin
234+ path : dist/File Find.bin
You can’t perform that action at this time.
0 commit comments