[Pkg-javascript-commits] [less.js] 272/285: Try out appveyor
Jonas Smedegaard
dr at jones.dk
Mon Oct 26 23:24:01 UTC 2015
This is an automated email from the git hooks/post-receive script.
js pushed a commit to annotated tag v2.0.0
in repository less.js.
commit 8e74aaef8fcbf7d257b2bf29e3225e190ac703de
Author: Luke Page <luke.a.page at gmail.com>
Date: Sat Nov 8 22:34:22 2014 +0000
Try out appveyor
---
appveyor.yml | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..015d59e
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,32 @@
+# Fix line endings in Windows. (runs before repo cloning)
+init:
+ - git config --global core.autocrlf input
+
+# Test against these versions of Node.js.
+environment:
+ matrix:
+ - nodejs_version: "0.10"
+ - nodejs_version: "0.11"
+
+# Install scripts. (runs after repo cloning)
+install:
+ # Get the latest stable version of Node 0.STABLE.latest
+ - ps: Install-Product node $env:nodejs_version
+ # Typical npm stuff.
+ - npm install
+ # Grunt-specific stuff.
+ - npm install -g grunt-cli
+
+# Post-install test scripts.
+test_script:
+ # Output useful info for debugging.
+ - node --version
+ - npm --version
+ # Run test
+ - grunt test
+
+# Don't actually build.
+build: off
+
+# Set build version format here instead of in the admin panel.
+version: "{build}"
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/less.js.git
More information about the Pkg-javascript-commits
mailing list