mirror of
https://github.com/certbot/certbot.git
synced 2026-08-02 19:31:51 +02:00
Do not run the full CI pipeline on master (#6811)
* Configure appveyor * Renaming in travis yml * Update .travis.yml Co-Authored-By: adferrand <adferrand@users.noreply.github.com> * Update .travis.yml Co-Authored-By: adferrand <adferrand@users.noreply.github.com>
This commit is contained in:
committed by
Brad Warren
parent
e593674930
commit
f378536ffa
@@ -11,6 +11,14 @@ branches:
|
||||
- /^\d+\.\d+\.x$/ # Version branches like X.X.X
|
||||
- /^test-.*$/
|
||||
|
||||
init:
|
||||
# Since master can receive only commits from PR that have already been tested, following
|
||||
# condition avoid to launch all jobs except the coverage one for commits pushed to master.
|
||||
- ps: |
|
||||
if (-Not $Env:APPVEYOR_PULL_REQUEST_NUMBER -And $Env:APPVEYOR_REPO_BRANCH -Eq 'master' `
|
||||
-And -Not ($Env:TOXENV -Like '*-cover'))
|
||||
{ $Env:APPVEYOR_SKIP_FINALIZE_ON_EXIT = 'true'; Exit-AppVeyorBuild }
|
||||
|
||||
install:
|
||||
# Use Python 3.7 by default
|
||||
- "SET PATH=C:\\Python37;C:\\Python37\\Scripts;%PATH%"
|
||||
|
||||
Reference in New Issue
Block a user