FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/.github/appveyor.yml at pythoncapi · pythoncapi/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pythoncapi
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
.github
/
appveyor.yml
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (36 loc) · 1.12 KB
Breadcrumbs
cpython
/
.github
/
appveyor.yml
Copy path
File metadata and controls
38 lines (36 loc) · 1.12 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
version
:
3.8build{build}
clone_depth
:
5
branches
:
only
:
-
master
-
/\d\.\d/
-
buildbot-custom
cache
:
-
externals -> PCbuild
before_build
:
-
ps
:
|+
if ($env:APPVEYOR_RE_BUILD) {
echo 'Doing full build due to re-build request.'
} elseif (!$env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT) {
echo 'Not a PR, doing full build.'
} else {
git fetch -q origin +refs/heads/$env:APPVEYOR_REPO_BRANCH
$mergebase = git merge-base HEAD FETCH_HEAD
$changes = git diff --name-only HEAD $mergebase | grep -vE '(\.rst$)|(^Doc)|(^Misc)'
If (!$changes) {
echo 'Only docs were updated, stopping build process.'
Exit-AppveyorBuild
} else {
echo 'Doing full build due to non-doc changes in these files:'
echo $changes
}
}
build_script
:
-
cmd
:
PCbuild\build.bat -e -p x64
-
cmd
:
PCbuild\amd64\python.exe -m test.pythoninfo
test_script
:
-
cmd
:
PCbuild\rt.bat -x64 -q -uall -u-cpu -u-largefile -rwW --slowest --timeout=1200 --fail-env-changed -j0
environment
:
HOST_PYTHON
:
C:\Python36\python.exe
image
:
-
Visual Studio 2017
Back
|
FazBrowse Home
|
New Git URL