BloodHound/appveyor.yml

36 lines
1016 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
2016-09-01 21:39:02 +00:00
artifacts:
- path: BloodHound-win32-ia32.zip
name: BloodHound-win32-ia32
- path: BloodHound-win32-x64.zip
name: BloodHound-win32-x64
2016-09-01 22:07:03 +00:00
deploy:
- provider: Github
release: BloodHound Rolling
description: 'Rolling release of BloodHound compiled from Source'
artifact: BloodHound-win32-ia32.zip,BloodHound-win32-x64.zip
draft: true
force_update: true
auth_token:
secure: 9E4/AX+ecgXB482XLGCgpdLL5hlWJOUywGKREcRL0iD+YBU/ABXJOGXYHLeKQIgv
2016-09-01 21:16:27 +00:00
# Don't actually build.
build: off