-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (60 loc) · 1.48 KB
/
ci.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: ci
on:
push:
branches:
- main
tags:
- '*'
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# os: [macos-latest, ubuntu-20.04, windows-latest]
os: [macos-latest]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
architecture: 'x64'
cache: 'pip'
cache-dependency-path: |
pyproject.toml
- name: Install
run: |
pip install .[test]
- name: Linter
run: |
make lint
# `import pyglet` crashes on ubuntu-latest due to missing X window system
if: matrix.os == 'macos-latest'
- name: Build Executable
uses: Nuitka/Nuitka-Action@main
with:
nuitka-version: main
script-name: imshow
standalone: true
onefile: false
- name: Test Executable
run: |
ls -R
./build/imshow.bin --version
# `import pyglet` crashes on ubuntu-latest due to missing X window system
if: matrix.os == 'macos-latest'
# - name: Rename Executable
# run: |
# mv build/imshow.bin build/imshow-${{ runner.os }}.bin
# if: matrix.os != 'windows-latest'
#
# - name: Upload Artifacts
# uses: actions/upload-artifact@v4
# with:
# name: build-${{ runner.os }}
# path: |
# build/*.exe
# build/*.bin