Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
image: Visual Studio 2017
configuration: Release

platform:
- x64
- x86

install:
- ps: Install-Product node 10 $env:platform
- npm install
- curl -L -o nasminst.exe https://www.nasm.us/pub/nasm/releasebuilds/2.14/win32/nasm-2.14-installer-x86.exe
- start /wait nasminst.exe /S
- ps: $env:path="C:\Program Files (x86)\nasm;$($env:path)"

build_script:
- npm run download
- npm run build
- npm run package

test: off

artifacts:
- path: packages/*.zip

# do not build on tags
skip_tags: true
Loading