From bcf10bcf27daef5979f8e8844110eb4ff6c33a9d Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 20 Oct 2018 13:20:48 -0400 Subject: Upgrade V8 to 7.1.302.4 --- .appveyor.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to '.appveyor.yml') diff --git a/.appveyor.yml b/.appveyor.yml index 97f374c8d..98673ab1d 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -401,7 +401,11 @@ after_test: $dir = "$env:APPVEYOR_BUILD_FOLDER\out\$trap" Exec { gn gen $dir | Out-Null } $files = Get-Tree $dir -File -Force -Recurse | where Extension -ne ".dll" - Select-String $trap -Path $files -SimpleMatch | tee -Variable line_matches + Select-String $trap -Path $files -SimpleMatch | where { + # V8 took the liberty to produce an absolute path in their ninja + # output. We can't do much about that, so we just ignore it. + $_.Line -notmatch "v8/builtins-generated/bytecodes-builtins-list.h" + } | tee -Variable line_matches if ($line_matches) { $ctx = $line_matches.Line | Select-String "[^\s;,]*[\s=]*[^\s;,=]*$trap[^\s;,]*" -AllMatches | -- cgit v1.2.3