mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 12:30:50 +01:00
b409313364
- 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>
12 lines
432 B
YAML
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'
|