Skip to content

Commit 47cdd57

Browse files
committed
- added linux with cxfreeze from cmd
1 parent cf3c675 commit 47cdd57

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/linux.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: frozen app with cx_freeze on windows
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
schedule:
7+
- cron: '0 0 * * 0' # This runs the workflow every Sunday at midnight UTC
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
os: [ubuntu-latest]
16+
17+
steps:
18+
- name: Check out repository
19+
uses: actions/checkout@v2
20+
21+
- uses: astral-sh/setup-uv@v1
22+
with:
23+
version: "latest"
24+
25+
- name: basic
26+
run: |
27+
cd cx_Freeze_win
28+
uvx --from cx_Freeze --with numpy,pandas,robotframework cxfreeze build || true
29+
build/*/robot ../examples/

0 commit comments

Comments
 (0)