diff options
author | Minteck <contact@minteck.org> | 2022-02-25 18:08:27 +0100 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-02-25 18:08:27 +0100 |
commit | a5c417748112e9d88d9ca522561e338eb9ba9007 (patch) | |
tree | ddab6e854fe8b50942a397a0d9fd8330ad662a97 /node_modules/mmmagic/appveyor.yml | |
download | argon-cdn-a5c417748112e9d88d9ca522561e338eb9ba9007.tar.gz argon-cdn-a5c417748112e9d88d9ca522561e338eb9ba9007.tar.bz2 argon-cdn-a5c417748112e9d88d9ca522561e338eb9ba9007.zip |
Initial commit
Diffstat (limited to 'node_modules/mmmagic/appveyor.yml')
-rw-r--r-- | node_modules/mmmagic/appveyor.yml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/node_modules/mmmagic/appveyor.yml b/node_modules/mmmagic/appveyor.yml new file mode 100644 index 0000000..11761a3 --- /dev/null +++ b/node_modules/mmmagic/appveyor.yml @@ -0,0 +1,42 @@ +environment: + matrix: + - nodejs_version: "4" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + GYP_MSVS_VERSION: "2013" + - nodejs_version: "4" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + GYP_MSVS_VERSION: "2015" + - nodejs_version: "6" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + GYP_MSVS_VERSION: "2013" + - nodejs_version: "6" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + GYP_MSVS_VERSION: "2015" + - nodejs_version: "8" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + GYP_MSVS_VERSION: "2013" + - nodejs_version: "8" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + GYP_MSVS_VERSION: "2015" + - nodejs_version: "10" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + GYP_MSVS_VERSION: "2015" + - nodejs_version: "12" + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + GYP_MSVS_VERSION: "2017" + + +install: + - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) x64 + - set CL=-DDELAYIMP_INSECURE_WRITABLE_HOOKS + - npm install + +test_script: + - echo %APPVEYOR_BUILD_WORKER_IMAGE% + - node --version + - npm --version + - npm test + +build: off +shallow_clone: true +version: "{build}" |