Skip to content

Commit 22b22a3

Browse files
committed
sneaking into heaven peach garden
1 parent d0c34e5 commit 22b22a3

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build WinPython Dot 3.13
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build-dot:
8+
runs-on: windows-latest
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v4
12+
13+
- name: Download python-3.13 standalone
14+
run: |
15+
curl -L -o python-3.13-embed.zip https://github.com/indygreg/python-build-standalone/releases/download/20240421/cpython-3.13.0b1+20240421-x86_64-pc-windows-msvc-shared-install_only.zip
16+
mkdir dotpython
17+
tar -xf python-3.13-embed.zip -C dotpython
18+
19+
- name: Prepare WinPython dot structure
20+
run: |
21+
mkdir WinPython-dot-3.13
22+
move dotpython\* WinPython-dot-3.13\
23+
# Add more WinPython-specific folders/files here if needed
24+
25+
- name: Zip the result
26+
run: |
27+
Compress-Archive -Path WinPython-dot-3.13\* -DestinationPath WinPython-dot-3.13.zip
28+
29+
- name: Upload artifact
30+
uses: actions/upload-artifact@v4
31+
with:
32+
name: WinPython-dot-3.13
33+
path: WinPython-dot-3.13.zip

build/dot_build.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[builds]
2+
[[builds]]
3+
name = "WinPython-dot-3.13"
4+
root_dir_for_builds = "build_output"
5+
python_target = "3.13"
6+
flavor = "dot"
7+
arch = "amd64"
8+
source_dirs = ""
9+
toolsdirs = ""
10+
requirements = ""
11+
create_installer = false
12+
13+
[pythons]
14+
"3.13" = { python_target_release = "3.13.0", release = "b1", my_release_level = "b0", mandatory_requirements = "" }

0 commit comments

Comments
 (0)