Skip to content

Commit 45ce526

Browse files
committed
Do not package hostpython
1 parent 809239d commit 45ce526

File tree

1 file changed

+4
-18
lines changed

1 file changed

+4
-18
lines changed

.appveyor.yml

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,6 @@ for:
5757
- brew link libtool
5858

5959
build_script:
60-
# package hostpython
61-
- HOSTPYTHON_FILE_NAME=hostpython-macos-v$APPVEYOR_BUILD_VERSION.zip
62-
- pushd ~/venv3.10
63-
- zip -r $HOSTPYTHON_FILE_NAME .
64-
- appveyor PushArtifact $HOSTPYTHON_FILE_NAME -DeploymentName hostpython-macos
65-
- popd
66-
6760
# build Python 3
6861
- toolchain build python3
6962
- ls dist
@@ -74,13 +67,13 @@ for:
7467
# package the rest of dist
7568
- DIST_FILE_NAME=dist/python-ios-dist-v$APPVEYOR_BUILD_VERSION.tar.gz
7669
- tar -czvf $DIST_FILE_NAME dist/*
77-
- appveyor PushArtifact $DIST_FILE_NAME -DeploymentName python-dist
70+
- appveyor PushArtifact $DIST_FILE_NAME -DeploymentName python-dist-macos
7871

7972
deploy:
8073
provider: GitHub
8174
auth_token: $(GITHUB_TOKEN)
8275
release: $(APPVEYOR_REPO_TAG_NAME)
83-
artifact: python-dist, hostpython-macos
76+
artifact: python-dist-macos
8477
on:
8578
APPVEYOR_REPO_TAG: true
8679

@@ -105,13 +98,6 @@ for:
10598
}
10699
Update-AppveyorBuild -Version $v
107100
108-
# package hostpython
109-
- HOSTPYTHON_FILE_NAME=hostpython-linux-v$APPVEYOR_BUILD_VERSION.zip
110-
- pushd ~/venv3.10
111-
- zip -r $HOSTPYTHON_FILE_NAME .
112-
- appveyor PushArtifact $HOSTPYTHON_FILE_NAME -DeploymentName hostpython-linux
113-
- popd
114-
115101
# install NDK
116102
- export ANDROID_SDK_ROOT="/usr/lib/android-sdk"
117103
- export NDK_VERSION=25.2.9519653
@@ -150,14 +136,14 @@ for:
150136
- DIST_FILE_NAME=python-android-dist-v$APPVEYOR_BUILD_VERSION.zip
151137
- pushd ~/.local/share/python-for-android/dists/serious_python/libs
152138
- zip -r $DIST_FILE_NAME .
153-
- appveyor PushArtifact $DIST_FILE_NAME -DeploymentName python-dist
139+
- appveyor PushArtifact $DIST_FILE_NAME -DeploymentName python-dist-android
154140
- popd
155141

156142
deploy:
157143
provider: GitHub
158144
auth_token: $(GITHUB_TOKEN)
159145
release: $(APPVEYOR_REPO_TAG_NAME)
160-
artifact: python-dist, hostpython-linux
146+
artifact: python-dist-android
161147
on:
162148
APPVEYOR_REPO_TAG: true
163149

0 commit comments

Comments
 (0)