This repository was archived by the owner on Feb 14, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 84
84
if ($env:APPVEYOR_REPO_BRANCH -eq "master") {
85
85
$env:CONTAINER = "my-pre-release"
86
86
if ($env:DAILY_COMMIT) { $env:BUILD_COMMIT = $env:DAILY_COMMIT }
87
+ if ($env:DAILY_SKIP -eq "true") { exit 0 }
87
88
} else {
88
89
$env:CONTAINER = "wheels"
89
90
$env:UPLOAD_ARGS = "--no-update-index"
92
93
install :
93
94
# Install Python (from the official .msi of http://python.org) and pip when
94
95
# not already installed.
95
- - ps : >-
96
- if ($env:APPVEYOR_REPO_BRANCH -eq "master" -and $env:DAILY_SKIP -eq "true") { exit 0 }
97
96
- " powershell ./appveyor/install.ps1"
98
97
- " SET PATH=%PYTHON%;%PYTHON%\\ Scripts;%PATH%"
99
98
- " python -m pip install -U pip"
@@ -123,8 +122,6 @@ install:
123
122
build : false
124
123
125
124
test_script :
126
- - ps : >-
127
- if ($env:APPVEYOR_REPO_BRANCH -eq "master" -and $env:DAILY_SKIP -eq "true") { exit 0 }
128
125
# Remove the source dir to make sure we run the tests on the
129
126
# installed library.
130
127
- " rd /s /q \" sklearn\" "
@@ -143,8 +140,6 @@ artifacts:
143
140
- path : dist\*
144
141
145
142
on_success :
146
- - ps : >-
147
- if ($env:APPVEYOR_REPO_BRANCH -eq "master" -and $env:DAILY_SKIP -eq "true") { exit 0 }
148
143
# Upload the generated wheel package to Rackspace
149
144
# On Windows, Apache Libcloud cannot find a standard CA cert bundle so we
150
145
# disable the ssl checks.
You can’t perform that action at this time.
0 commit comments