Skip to content

Commit 3178f40

Browse files
authored
Adding Linux on ARM runner
1 parent c56b367 commit 3178f40

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/File-Find.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)