-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
*.xaml text | ||
*.config text | ||
*.json text | ||
*.yml text | ||
|
||
*.exe binary | ||
*.dll binary | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,5 @@ native = LF | |
**.xaml = native | ||
**.config = native | ||
**.json = native | ||
**.yml = native | ||
.hgeol = native |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |