Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
b221c93d
Unverified
Kaydet (Commit)
b221c93d
authored
Agu 07, 2018
tarafından
Steve Dower
Kaydeden (comit)
GitHub
Agu 07, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
VSTS: Skip build steps when only docs have changed (GH-8546)
üst
8b584680
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
87 additions
and
1 deletion
+87
-1
docs.yml
.vsts/docs.yml
+15
-1
linux-coverage.yml
.vsts/linux-coverage.yml
+20
-0
linux-pr.yml
.vsts/linux-pr.yml
+22
-0
macos-pr.yml
.vsts/macos-pr.yml
+18
-0
windows-pr.yml
.vsts/windows-pr.yml
+12
-0
No files found.
.vsts/docs.yml
Dosyayı görüntüle @
b221c93d
...
@@ -23,21 +23,35 @@ steps:
...
@@ -23,21 +23,35 @@ steps:
clean
:
true
clean
:
true
fetchDepth
:
5
fetchDepth
:
5
-
script
:
|
git fetch -q origin $(system.pullRequest.targetBranch)
if ! git diff --name-only HEAD $(git merge-base HEAD FETCH_HEAD) | grep -qE '(\.rst$|^Doc|^Misc)'
then
echo "No docs were updated, stopping build process."
echo "##vso[task.setvariable variable=NoDocs]true"
exit
fi
displayName
:
Detect doc-only changes
condition
:
and(succeeded(), variables['system.pullRequest.targetBranch'])
-
task
:
UsePythonVersion@0
-
task
:
UsePythonVersion@0
displayName
:
'
Use
Python
3.6
or
later'
displayName
:
'
Use
Python
3.6
or
later'
inputs
:
inputs
:
versionSpec
:
'
>=3.6'
versionSpec
:
'
>=3.6'
condition
:
and(succeeded(), ne(variables['NoDocs'], 'true'))
-
script
:
python -m pip install sphinx~=1.6.1 blurb python-docs-theme
-
script
:
python -m pip install sphinx~=1.6.1 blurb python-docs-theme
displayName
:
'
Install
build
dependencies'
displayName
:
'
Install
build
dependencies'
condition
:
and(succeeded(), ne(variables['NoDocs'], 'true'))
-
script
:
make check suspicious html PYTHON=python
-
script
:
make check suspicious html PYTHON=python
workingDirectory
:
'
$(build.sourcesDirectory)/Doc'
workingDirectory
:
'
$(build.sourcesDirectory)/Doc'
displayName
:
'
Build
documentation'
displayName
:
'
Build
documentation'
condition
:
and(succeeded(), ne(variables['NoDocs'], 'true'))
-
task
:
PublishBuildArtifacts@1
-
task
:
PublishBuildArtifacts@1
displayName
:
'
Publish
build'
displayName
:
'
Publish
build'
condition
:
and(
succeeded(), ne(variables['Build.Reason'], 'PullRequest
'))
condition
:
and(
and(succeeded(), ne(variables['Build.Reason'], 'PullRequest')), ne(variables['NoDocs'], 'true
'))
inputs
:
inputs
:
PathToPublish
:
'
$(build.sourcesDirectory)/Doc/build'
PathToPublish
:
'
$(build.sourcesDirectory)/Doc/build'
ArtifactName
:
build
ArtifactName
:
build
...
...
.vsts/linux-coverage.yml
Dosyayı görüntüle @
b221c93d
...
@@ -27,12 +27,24 @@ steps:
...
@@ -27,12 +27,24 @@ steps:
clean
:
true
clean
:
true
fetchDepth
:
5
fetchDepth
:
5
-
script
:
|
git fetch -q origin $(system.pullRequest.targetBranch)
if ! git diff --name-only HEAD $(git merge-base HEAD FETCH_HEAD) | grep -qvE '(\.rst$|^Doc|^Misc)'
then
echo "Only docs were updated, stopping build process."
echo "##vso[task.setvariable variable=DocOnly]true"
exit
fi
displayName
:
Detect doc-only changes
condition
:
and(succeeded(), variables['system.pullRequest.targetBranch'])
#- template: linux-deps.yml
#- template: linux-deps.yml
# See https://github.com/Microsoft/vsts-agent/blob/master/docs/preview/yamlgettingstarted-templates.md
# See https://github.com/Microsoft/vsts-agent/blob/master/docs/preview/yamlgettingstarted-templates.md
# For now, we copy/paste the steps
# For now, we copy/paste the steps
-
script
:
echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial main" > /etc/apt/sources.list.d/python.list && sudo apt-get update
-
script
:
echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial main" > /etc/apt/sources.list.d/python.list && sudo apt-get update
displayName
:
'
Update
apt-get
lists'
displayName
:
'
Update
apt-get
lists'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
echo
##vso[task.prependpath]$(OPENSSL_DIR)
-
script
:
echo
##vso[task.prependpath]$(OPENSSL_DIR)
displayName
:
'
Add
$(OPENSSL_DIR)
to
PATH'
displayName
:
'
Add
$(OPENSSL_DIR)
to
PATH'
...
@@ -55,24 +67,32 @@ steps:
...
@@ -55,24 +67,32 @@ steps:
uuid-dev
uuid-dev
xvfb
xvfb
displayName
:
'
Install
dependencies'
displayName
:
'
Install
dependencies'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
python3 Tools/ssl/multissltests.py --steps=library --base-directory $(build.sourcesDirectory)/multissl --openssl $(OPENSSL) --system Linux
-
script
:
python3 Tools/ssl/multissltests.py --steps=library --base-directory $(build.sourcesDirectory)/multissl --openssl $(OPENSSL) --system Linux
displayName
:
'
python
multissltests.py'
displayName
:
'
python
multissltests.py'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
./configure --with-pydebug
-
script
:
./configure --with-pydebug
displayName
:
'
Configure
CPython
(debug)'
displayName
:
'
Configure
CPython
(debug)'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
make -s -j4
-
script
:
make -s -j4
displayName
:
'
Build
CPython'
displayName
:
'
Build
CPython'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
./python -m venv venv && ./venv/bin/python -m pip install -U coverage
-
script
:
./python -m venv venv && ./venv/bin/python -m pip install -U coverage
displayName
:
'
Set
up
virtual
environment'
displayName
:
'
Set
up
virtual
environment'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
./venv/bin/python -m test.pythoninfo
-
script
:
./venv/bin/python -m test.pythoninfo
displayName
:
'
Display
build
info'
displayName
:
'
Display
build
info'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
xvfb-run ./venv/bin/python -m coverage run --pylib -m test --fail-env-changed -uall,-cpu -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_multiprocessing_spawn -x test_concurrent_futures
-
script
:
xvfb-run ./venv/bin/python -m coverage run --pylib -m test --fail-env-changed -uall,-cpu -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_multiprocessing_spawn -x test_concurrent_futures
displayName
:
'
Tests
with
coverage'
displayName
:
'
Tests
with
coverage'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
source ./venv/bin/activate && bash <(curl -s https://codecov.io/bash)
-
script
:
source ./venv/bin/activate && bash <(curl -s https://codecov.io/bash)
displayName
:
'
Publish
code
coverage
results'
displayName
:
'
Publish
code
coverage
results'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
.vsts/linux-pr.yml
Dosyayı görüntüle @
b221c93d
...
@@ -27,15 +27,29 @@ steps:
...
@@ -27,15 +27,29 @@ steps:
clean
:
true
clean
:
true
fetchDepth
:
5
fetchDepth
:
5
-
script
:
|
git fetch -q origin $(system.pullRequest.targetBranch)
if ! git diff --name-only HEAD $(git merge-base HEAD FETCH_HEAD) | grep -qvE '(\.rst$|^Doc|^Misc)'
then
echo "Only docs were updated, stopping build process."
echo "##vso[task.setvariable variable=DocOnly]true"
exit
fi
displayName
:
Detect doc-only changes
condition
:
and(succeeded(), variables['system.pullRequest.targetBranch'])
#- template: linux-deps.yml
#- template: linux-deps.yml
# See https://github.com/Microsoft/vsts-agent/blob/master/docs/preview/yamlgettingstarted-templates.md
# See https://github.com/Microsoft/vsts-agent/blob/master/docs/preview/yamlgettingstarted-templates.md
# For now, we copy/paste the steps
# For now, we copy/paste the steps
-
script
:
echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial main" > /etc/apt/sources.list.d/python.list && sudo apt-get update
-
script
:
echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial main" > /etc/apt/sources.list.d/python.list && sudo apt-get update
displayName
:
'
Update
apt-get
lists'
displayName
:
'
Update
apt-get
lists'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
echo
##vso[task.prependpath]$(OPENSSL_DIR)
-
script
:
echo
##vso[task.prependpath]$(OPENSSL_DIR)
displayName
:
'
Add
$(OPENSSL_DIR)
to
PATH'
displayName
:
'
Add
$(OPENSSL_DIR)
to
PATH'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
>
-
script
:
>
sudo apt-get -yq install
sudo apt-get -yq install
build-essential
build-essential
...
@@ -55,22 +69,30 @@ steps:
...
@@ -55,22 +69,30 @@ steps:
uuid-dev
uuid-dev
xvfb
xvfb
displayName
:
'
Install
dependencies'
displayName
:
'
Install
dependencies'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
python3 Tools/ssl/multissltests.py --steps=library --base-directory $(build.sourcesDirectory)/multissl --openssl $(OPENSSL) --system Linux
-
script
:
python3 Tools/ssl/multissltests.py --steps=library --base-directory $(build.sourcesDirectory)/multissl --openssl $(OPENSSL) --system Linux
displayName
:
'
python
multissltests.py'
displayName
:
'
python
multissltests.py'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
./configure --with-pydebug
-
script
:
./configure --with-pydebug
displayName
:
'
Configure
CPython
(debug)'
displayName
:
'
Configure
CPython
(debug)'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
make -s -j4
-
script
:
make -s -j4
displayName
:
'
Build
CPython'
displayName
:
'
Build
CPython'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
make pythoninfo
-
script
:
make pythoninfo
displayName
:
'
Display
build
info'
displayName
:
'
Display
build
info'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
# Run patchcheck and fail if anything is discovered
# Run patchcheck and fail if anything is discovered
-
script
:
./python Tools/scripts/patchcheck.py --travis
true
-
script
:
./python Tools/scripts/patchcheck.py --travis
true
displayName
:
'
Run
patchcheck.py'
displayName
:
'
Run
patchcheck.py'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu"
-
script
:
xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu"
displayName
:
'
Tests'
displayName
:
'
Tests'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
.vsts/macos-pr.yml
Dosyayı görüntüle @
b221c93d
...
@@ -24,14 +24,32 @@ steps:
...
@@ -24,14 +24,32 @@ steps:
clean
:
true
clean
:
true
fetchDepth
:
5
fetchDepth
:
5
-
script
:
|
git fetch -q origin $(system.pullRequest.targetBranch)
changes = $(git diff --name-only HEAD $(git merge-base HEAD FETCH_HEAD))
echo "Files changed:"
echo "$changes"
if ! echo "$changes" | grep -qvE '(\.rst$)|(^Doc)|(^Misc)'
then
echo "Only docs were updated, stopping build process."
echo "##vso[task.setvariable variable=DocOnly]true"
exit
fi
displayName
:
Detect doc-only changes
condition
:
and(succeeded(), variables['system.pullRequest.targetBranch'])
-
script
:
./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-vsts
-
script
:
./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-vsts
displayName
:
'
Configure
CPython
(debug)'
displayName
:
'
Configure
CPython
(debug)'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
make -s -j4
-
script
:
make -s -j4
displayName
:
'
Build
CPython'
displayName
:
'
Build
CPython'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
make pythoninfo
-
script
:
make pythoninfo
displayName
:
'
Display
build
info'
displayName
:
'
Display
build
info'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
make buildbottest TESTOPTS="-j4 -uall,-cpu"
-
script
:
make buildbottest TESTOPTS="-j4 -uall,-cpu"
displayName
:
'
Tests'
displayName
:
'
Tests'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
.vsts/windows-pr.yml
Dosyayı görüntüle @
b221c93d
...
@@ -37,13 +37,25 @@ steps:
...
@@ -37,13 +37,25 @@ steps:
clean
:
true
clean
:
true
fetchDepth
:
5
fetchDepth
:
5
-
powershell
:
|
git fetch -q origin $(System.PullRequest.TargetBranch)
if (-not (git diff --name-only HEAD (git merge-base HEAD FETCH_HEAD) | sls -NotMatch '(\.rst$)|(^Doc)|(^Misc)')) {
Write-Host 'Only docs were updated. Skipping build'
Write-Host '##vso[task.setvariable variable=DocOnly]true'
}
displayName
:
Detect doc-only changes
condition
:
and(succeeded(), variables['System.PullRequest.TargetBranch'])
-
script
:
PCbuild\build.bat -e $(buildOpt)
-
script
:
PCbuild\build.bat -e $(buildOpt)
displayName
:
'
Build
CPython'
displayName
:
'
Build
CPython'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
python.bat -m test.pythoninfo
-
script
:
python.bat -m test.pythoninfo
displayName
:
'
Display
build
info'
displayName
:
'
Display
build
info'
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
-
script
:
PCbuild\rt.bat -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0
-
script
:
PCbuild\rt.bat -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0
displayName
:
'
Tests'
displayName
:
'
Tests'
env
:
env
:
PREFIX
:
$(Py_OutDir)\$(outDirSuffix)
PREFIX
:
$(Py_OutDir)\$(outDirSuffix)
condition
:
and(succeeded(), ne(variables['DocOnly'], 'true'))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment