Skip to content

Commit 574abb6

Browse files
mfikesdnolen
authored and
dnolen
committed
CLJS-2716: Add ChakraCore to Windows CI (AppVeyor)
1 parent 5b5eaf5 commit 574abb6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

appveyor.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,21 @@ install:
3232
- ps: Install-Product node $env:nodejs_version x64
3333
- ps: wget 'http://ftp.mozilla.org/pub/firefox/nightly/latest-mozilla-central/jsshell-win64.zip' -OutFile "$pwd\jsshell.zip"
3434
- 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
3537
- ps: .\script\bootstrap.ps1
3638
- ps: "[Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8"
3739
- ps: $env:SPIDERMONKEY_HOME = "$pwd/jsshell"
3840
- ps: $SPIDERMONKEY_HOME = "$pwd/jsshell"
41+
- ps: $env:CHAKRACORE_HOME = "$pwd/chakra-core/x64_release"
42+
- ps: $CHAKRACORE_HOME = "$pwd/chakra-core/x64_release"
3943

4044
test_script:
4145
- cmd: lein test
4246
- cmd: powershell -noninteractive -noprofile -command .\script\test.ps1 > test-out.txt
4347
- 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 }
4650

4751
# Don't actually build (MSBuild).
4852
build: off

0 commit comments

Comments
 (0)