Add warning to untested CIs (#2072)

* Add warning to untested CIs
This commit is contained in:
Margen67 2020-12-26 16:08:04 -08:00 committed by GitHub
parent 9f5b4e0e11
commit d82e0ad07a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -16,7 +16,10 @@ skip_commits:
- setup.bat
init:
- ps: Update-AppveyorBuild -Version "$env:appveyor_repo_commit"
- ps: |-
echo "This CI isn't tested against master, and therefore, isn't guaranteed to work. Pull requests are welcome."
echo "If it doesn't work and you'd rather not fix it, it's recommended to use GitHub Actions CI instead."
Update-AppveyorBuild -Version "$env:appveyor_repo_commit"
image: # If this is modified, please also update the build script
- Visual Studio 2019

View File

@ -46,6 +46,11 @@ jobs:
configuration: Debug
steps:
- script: |
echo "This CI isn't tested against master, and therefore, isn't guaranteed to work. Pull requests are welcome."
echo "If it doesn't work and you'd rather not fix it, it's recommended to use GitHub Actions CI instead."
displayName: 'Third-Party CI Warning'
- checkout: self
submodules: recursive