Fix AppVeyor.
This commit is contained in:
parent
d08ddf04f6
commit
0b49cf0507
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,3 +6,4 @@ tmp
|
|||||||
junit
|
junit
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.grunt
|
.grunt
|
||||||
|
/_SpecRunner.html
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
# grunt-contrib-jasmine v0.8.2 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-jasmine.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-jasmine)
|
# grunt-contrib-jasmine v0.8.2 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-jasmine.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-jasmine) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/5985958by5rhnh31/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-jasmine/branch/master)
|
||||||
|
|
||||||
> Run jasmine specs headlessly through PhantomJS.
|
> Run jasmine specs headlessly through PhantomJS.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
This plugin requires Grunt `~0.4.0`
|
This plugin requires Grunt `>=0.4.0`
|
||||||
|
|
||||||
If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
|
If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
|
||||||
|
|
||||||
@ -259,7 +259,7 @@ grunt.initConfig({
|
|||||||
options: {
|
options: {
|
||||||
specs: 'spec/*Spec.js',
|
specs: 'spec/*Spec.js',
|
||||||
helpers: 'spec/*Helper.js',
|
helpers: 'spec/*Helper.js',
|
||||||
template: require('exports-process.js'),
|
template: require('exports-process.js')
|
||||||
vendor: [
|
vendor: [
|
||||||
"vendor/*.js",
|
"vendor/*.js",
|
||||||
"http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"
|
"http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"
|
||||||
@ -322,4 +322,4 @@ for more information on the RequireJS template.
|
|||||||
|
|
||||||
Task submitted by [Jarrod Overson](http://jarrodoverson.com)
|
Task submitted by [Jarrod Overson](http://jarrodoverson.com)
|
||||||
|
|
||||||
*This file was generated on Thu Jan 08 2015 16:18:55.*
|
*This file was generated on Fri Feb 27 2015 10:07:34.*
|
||||||
|
34
appveyor.yml
34
appveyor.yml
@ -1,29 +1,37 @@
|
|||||||
# appveyor file
|
# AppVeyor file
|
||||||
# http://www.appveyor.com/docs/appveyor-yml
|
# http://www.appveyor.com/docs/appveyor-yml
|
||||||
project_id: "5985958by5rhnh31"
|
|
||||||
|
|
||||||
# build version format
|
# Build version format
|
||||||
version: "{build}"
|
version: "{build}"
|
||||||
|
|
||||||
# fix lineendings in Windows
|
clone_depth: 10
|
||||||
init:
|
|
||||||
- git config --global core.autocrlf input
|
|
||||||
|
|
||||||
# what combinations to test
|
# Fix line endings on Windows
|
||||||
|
init:
|
||||||
|
- git config --global core.autocrlf true
|
||||||
|
|
||||||
|
# What combinations to test
|
||||||
environment:
|
environment:
|
||||||
matrix:
|
matrix:
|
||||||
|
- nodejs_version: 1.0
|
||||||
|
- nodejs_version: 0.12
|
||||||
- nodejs_version: 0.10
|
- nodejs_version: 0.10
|
||||||
|
|
||||||
# Get the latest stable version of Node 0.STABLE.latest
|
|
||||||
install:
|
install:
|
||||||
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
|
- ps: Install-Product node $env:nodejs_version
|
||||||
- npm install -g grunt-cli
|
- npm install -g grunt-cli
|
||||||
- npm install
|
- npm install
|
||||||
|
|
||||||
build: off
|
build: off
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- node --version
|
- node --version && npm --version
|
||||||
- npm --version
|
- npm test
|
||||||
- ps: grunt test --no-color # PowerShell
|
|
||||||
- cmd: grunt test --no-color
|
matrix:
|
||||||
|
fast_finish: true
|
||||||
|
|
||||||
|
cache:
|
||||||
|
- C:\Users\appveyor\AppData\Roaming\npm\node_modules # global npm modules
|
||||||
|
- C:\Users\appveyor\AppData\Roaming\npm-cache # npm cache
|
||||||
|
- node_modules # local npm modules
|
||||||
|
@ -49,5 +49,6 @@
|
|||||||
],
|
],
|
||||||
"files": [
|
"files": [
|
||||||
"tasks"
|
"tasks"
|
||||||
]
|
],
|
||||||
|
"appveyor_id": "5985958by5rhnh31"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user