10000 ENH Fix windows · MacPython/scikit-learn-wheels@cf34180 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Commit cf34180

Browse files
committed
ENH Fix windows
1 parent 9edd678 commit cf34180

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

appveyor.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,7 @@ init:
8080
if ($env:APPVEYOR_REPO_BRANCH -eq "master") {
8181
$env:CONTAINER = "my-pre-release"
8282
if ($env:DAILY_COMMIT) { $env:BUILD_COMMIT = $env:DAILY_COMMIT }
83-
if ($env:DAILY_SKIP -eq "true") {
84-
$env:APPVEYOR_SKIP_FINALIZE_ON_EXIT = true
85-
Exit-AppveyorBuild
86-
}
83+
if ($env:DAILY_SKIP -eq "true") { Exit-AppveyorBuild }
8784
} else {
8885
$env:CONTAINER = "wheels"
8986
$env:UPLOAD_ARGS = "--no-update-index"
@@ -142,6 +139,8 @@ on_success:
142139
# Upload the generated wheel package to Rackspace
143140
# On Windows, Apache Libcloud cannot find a standard CA cert bundle so we
144141
# disable the ssl checks.
142+
- ps: >-
143+
if ($env:APPVEYOR_REPO_BRANCH -eq "master" -and $env:DAILY_SKIP -eq "true") { exit 0 }
145144
- python -m wheelhouse_uploader upload
146145
--no-ssl-check
147146
--local-folder=dist

0 commit comments

Comments
 (0)
0