diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-10-20 13:20:48 -0400 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-20 16:30:02 -0700 |
| commit | bcf10bcf27daef5979f8e8844110eb4ff6c33a9d (patch) | |
| tree | 10d31127e89da8b8f034ec3abd6423c609c84024 /.appveyor.yml | |
| parent | 92b0a94c23c2c5df969969c20a6ef760e499f984 (diff) | |
Upgrade V8 to 7.1.302.4
Diffstat (limited to '.appveyor.yml')
| -rw-r--r-- | .appveyor.yml | 6 |
1 files changed, 5 insertions, 1 deletions
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 | |
