File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
node_js :
3
3
- " 0.10"
4
+ - " 0.12"
5
+ - " iojs"
4
6
before_script :
5
7
- " npm install -g grunt-cli"
6
8
# Narwhal uses a hardcoded path to openjdk v6, so use that version
7
9
- " sudo apt-get update -qq"
8
10
- " sudo apt-get install -qq openjdk-6-jre"
9
- - " PACKAGE=rhino1_7R3 ; wget http ://ftp. mozilla.org/pub/mozilla.org/js /$PACKAGE.zip && sudo unzip $PACKAGE -d /opt/ && rm $PACKAGE.zip"
10
- - " PACKAGE=rhino1_7R3 ; echo -e '#!/bin/sh\\ njava -jar /opt/'$PACKAGE'/js.jar $@' | sudo tee /usr/local/bin/rhino && sudo chmod +x /usr/local/bin/rhino"
11
+ - " PACKAGE=rhino1_7R5 ; wget https ://github.com/ mozilla/rhino/releases/download/Rhino1_7R5_RELEASE /$PACKAGE.zip && sudo unzip $PACKAGE -d /opt/ && rm $PACKAGE.zip"
12
+ - " PACKAGE=rhino1_7R5 ; echo -e '#!/bin/sh\\ njava -jar /opt/'$PACKAGE'/js.jar $@' | sudo tee /usr/local/bin/rhino && sudo chmod +x /usr/local/bin/rhino"
11
13
- " PACKAGE=ringojs-0.11; wget https://github.com/ringo/ringojs/releases/download/v0.11.0/$PACKAGE.zip && sudo unzip $PACKAGE -d /opt/ && rm $PACKAGE.zip"
12
14
- " PACKAGE=ringojs-0.11; sudo ln -s /opt/$PACKAGE/bin/ringo /usr/local/bin/ringo && sudo chmod +x /usr/local/bin/ringo"
13
15
- " PACKAGE=v0.3.2; wget https://github.com/280north/narwhal/archive/$PACKAGE.zip && sudo unzip $PACKAGE -d /opt/ && rm $PACKAGE.zip"
Original file line number Diff line number Diff line change @@ -27,9 +27,6 @@ module.exports = function(grunt) {
27
27
'test-phantomjs' : {
28
28
'command' : 'echo "Testing in PhantomJS..."; phantomjs "tests/tests.js"'
29
29
} ,
30
- // Rhino 1.7R4 has a bug that makes it impossible to test in.
31
- // https://bugzilla.mozilla.org/show_bug.cgi?id=775566
32
- // To test, use Rhino 1.7R3, or wait (heh) for the 1.7R5 release.
33
30
'test-rhino' : {
34
31
'command' : 'echo "Testing in Rhino..."; rhino -opt -1 "tests.js"' ,
35
32
'options' : {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Feel free to fork if you see possible improvements!
6
6
7
7
## Installation
8
8
9
- Via [ npm] ( https://www.npmjs.org / ) :
9
+ Via [ npm] ( https://www.npmjs.com / ) :
10
10
11
11
``` bash
12
12
npm install utf8
You can’t perform that action at this time.
0 commit comments