xenadmin/.travis.yml
Konstantina Chremmou b409313364 Script consolidation and partial port to PowerShell.
- Moved all scripts to new folder 'scripts'.
- Replaced preliminary check bash scripts with PowerShell scripts.
- Added proper spellcheck with aspell (travis only).

Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
2020-03-04 12:40:20 +00:00

12 lines
432 B
YAML

language: c
os: windows
install:
# package support for windows is not great; this is ugly, but will do for now
- choco install cyg-get
- cyg-get.bat aspell aspell-en
- powershell 'Set-ExecutionPolicy -ExecutionPolicy ByPass'
script:
- powershell './scripts/check_copyright.ps1 -NOISY'
- powershell './scripts/check_i18n.ps1 -NOISY'
- powershell '$env:Path+=";C:\tools\cygwin\bin"; ./scripts/check_spelling.ps1 -NOISY'