Skip to content

Commit

Permalink
Fixed EOL for .travis.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
iskiselev committed Aug 12, 2015
1 parent 379dec6 commit d4478c2
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*.xaml text
*.config text
*.json text
*.yml text

*.exe binary
*.dll binary
Expand Down
2 changes: 2 additions & 0 deletions .hgeol
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ native = LF
**.xaml = native
**.config = native
**.json = native
**.yml = native
.hgeol = native
53 changes: 25 additions & 28 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
language: csharp
solution: JSIL_NoXNA_NoLibraries.sln

before_install:
- nvm install 0.10
- wget -P /tmp/avim -N https://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-central/jsshell-linux-x86_64.zip
- unzip -d /tmp/js /tmp/avim/jsshell-linux-x86_64.zip
- export PATH=$PATH:/tmp/js

install:
- nuget restore JSIL_NoXNA_NoLibraries.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
- cd JSIL.Libraries
- npm install
- cd ..

script:
- xbuild /p:Configuration=Release /v:m JSIL_NoXNA_NoLibraries.sln
- cd JSIL.Libraries
- npm test
- cd ..
- rm bin/nunit.core.dll
- rm bin/nunit.core.interfaces.dll
- rm bin/nunit.util.dll
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./bin/Tests.DCE.dll ./bin/SimpleTests.dll ./bin/Tests.dll --run:JSIL.SimpleTests.SimpleTests

env:
- suppressTestOutput=true
language: csharp
solution: JSIL_NoXNA_NoLibraries.sln

before_install:
- nvm install 0.10
- wget -P /tmp/avim -N https://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-central/jsshell-linux-x86_64.zip
- unzip -d /tmp/js /tmp/avim/jsshell-linux-x86_64.zip
- export PATH=$PATH:/tmp/js

install:
- nuget restore JSIL_NoXNA_NoLibraries.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
- cd JSIL.Libraries
- npm install
- cd ..

script:
- xbuild /p:Configuration=Release /v:m JSIL_NoXNA_NoLibraries.sln
- cd JSIL.Libraries
- npm test
- cd ..
- rm bin/nunit.core.dll
- rm bin/nunit.core.interfaces.dll
- rm bin/nunit.util.dll
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./bin/Tests.DCE.dll ./bin/SimpleTests.dll ./bin/Tests.dll --run:JSIL.SimpleTests.SimpleTests

0 comments on commit d4478c2

Please sign in to comment.