Skip to content

Commit ed7a5cb

Browse files
committed
Run fake build
1 parent 7d70f74 commit ed7a5cb

File tree

1 file changed

+56
-9
lines changed

1 file changed

+56
-9
lines changed

.appveyor.yml

Lines changed: 56 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,61 @@
1-
image: ubuntu2004
1+
2+
skip_branch_with_pr: true
23

34
environment:
4-
ANDROID_SDK_ROOT: /usr/lib/android-sdk
5+
python_stack: python 3.12
6+
7+
matrix:
8+
# - job_name: Build Python for Linux
9+
# APPVEYOR_BUILD_WORKER_IMAGE: ubuntu
10+
11+
- job_name: Build Python for Windows
12+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
13+
14+
matrix:
15+
fast_finish: true
16+
17+
stack: $python_stack
18+
19+
for:
20+
# ======================================
21+
# Build Python for Linux
22+
# ======================================
23+
24+
- matrix:
25+
only:
26+
- job_name: Build Python for Linux
27+
28+
install:
29+
- echo install
30+
31+
build_script:
32+
- sh: |
33+
echo build
34+
35+
# ======================================
36+
# Build Python for Windows
37+
# ======================================
38+
39+
- matrix:
40+
only:
41+
- job_name: Build Python for Windows
42+
43+
install:
44+
- echo install
45+
46+
build_script:
47+
- echo build
548

6-
install:
7-
- ls -al $ANDROID_SDK_ROOT
49+
test: off
850

9-
build_script:
10-
- git clone https://github.com/beeware/cpython-android-source-deps
11-
- cd cpython-android-source-deps
12-
- ./build.sh
51+
# artifacts:
52+
# - path: client\build\windows\x64\runner\flet-windows.zip
53+
# - path: sdk\python\packages\flet-desktop\dist\*.whl
1354

14-
test: off
55+
# deploy:
56+
# provider: GitHub
57+
# auth_token: $(GITHUB_TOKEN)
58+
# release: $(APPVEYOR_REPO_TAG_NAME)
59+
# artifact: flet_windows
60+
# on:
61+
# APPVEYOR_REPO_TAG: true

0 commit comments

Comments
 (0)