BloodHound/appveyor.yml

19 lines
538 B
YAML
Raw Normal View History

2016-09-01 21:16:27 +00:00
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
2016-09-01 21:23:07 +00:00
- npm install -g electron-packager
2016-09-01 21:16:27 +00:00
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
2016-09-01 21:20:29 +00:00
- npm run winbuild
2016-09-01 21:33:12 +00:00
- 7z a -tzip -mx9 BloodHound-win32-ia32.zip BloodHound-win32-ia32
- 7z a -tzip -mx9 BloodHound-win32-x64.zip BloodHound-win32-x64
2016-09-01 21:16:27 +00:00
# Don't actually build.
build: off