-
Notifications
You must be signed in to change notification settings - Fork 6
55 lines (45 loc) · 1.67 KB
/
nuitka-build.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# This is a workflow for testing various Nuitka command-line options
name: Build-All-Platforms
# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
# Check-out repository
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- name: Setup Poetry
uses: abatilo/actions-poetry@v2
- name: Install Package
run: |
poetry install
- name: Build Executable (Windows)
if: runner.os == 'Windows'
shell: powershell
run: |
poetry run python -m nuitka --standalone --onefile --assume-yes-for-downloads --output-dir=build --follow-imports .\src\ankisiyuan
- name: Build Executable (macOS and Linux)
if: ${{ runner.os == 'macOS' || runner.os == 'Linux' }}
shell: bash
run: |
poetry run python -m nuitka --standalone --onefile --assume-yes-for-downloads --output-dir=build --follow-imports src/ankisiyuan
# Uploads artifacts
- name: "Upload Artifacts"
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }} Build
path: |
build/*.exe
build/*.bin
build/*.app/**/*