BloodHound/appveyor.yml

19 lines
538 B
YAML

# 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
- npm install -g electron-packager
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
- npm run winbuild
- 7z a -tzip -mx9 BloodHound-win32-ia32.zip BloodHound-win32-ia32
- 7z a -tzip -mx9 BloodHound-win32-x64.zip BloodHound-win32-x64
# Don't actually build.
build: off