File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -32,17 +32,21 @@ install:
32
32
- ps : Install-Product node $env:nodejs_version x64
33
33
- ps : wget 'http://ftp.mozilla.org/pub/firefox/nightly/latest-mozilla-central/jsshell-win64.zip' -OutFile "$pwd\jsshell.zip"
34
34
- ps : 7z x "-o$pwd\jsshell" jsshell.zip -r
35
+ - ps : wget 'https://aka.ms/chakracore/cc_windows_all_1_8_1' -OutFile "$pwd\chakra-core.zip"
36
+ - ps : 7z x "-o$pwd\chakra-core" chakra-core.zip -r
35
37
- ps : .\script\bootstrap.ps1
36
38
- ps : " [Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8"
37
39
- ps : $env:SPIDERMONKEY_HOME = "$pwd/jsshell"
38
40
- ps : $SPIDERMONKEY_HOME = "$pwd/jsshell"
41
+ - ps : $env:CHAKRACORE_HOME = "$pwd/chakra-core/x64_release"
42
+ - ps : $CHAKRACORE_HOME = "$pwd/chakra-core/x64_release"
39
43
40
44
test_script :
41
45
- cmd : lein test
42
46
- cmd : powershell -noninteractive -noprofile -command .\script\test.ps1 > test-out.txt
43
47
- cmd : type test-out.txt
44
- # Since tests are currently only run in 1 JavaScript environment (SpiderMonkey) , look for exactly one count of "0 failures, 0 errors."
45
- - cmd : powershell -noninteractive -noprofile -command if (-not ((sls -Pattern '0 failures, 0 errors.' -SimpleMatch test-out.txt).count -eq 1 )) { exit 1 }
48
+ # Since tests are currently only run in 2 JavaScript environments , look for exactly 2 counts of "0 failures, 0 errors."
49
+ - cmd : powershell -noninteractive -noprofile -command if (-not ((sls -Pattern '0 failures, 0 errors.' -SimpleMatch test-out.txt).count -eq 2 )) { exit 1 }
46
50
47
51
# Don't actually build (MSBuild).
48
52
build : off
You can’t perform that action at this time.
0 commit comments