Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade V8 to 7.9.8 #2907

Merged
merged 5 commits into from
Sep 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ before_build:
$env:AWS_SECRET_ACCESS_KEY = $null

build_script:
- python tools\setup.py
- cargo clippy --all-targets --release --locked -- -D clippy::all
- cargo build -vv --release --all-targets --locked

Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:
include:
- name: "release mac x86_64"
os: osx
osx_image: xcode11
after_success:
- &gzip_release
gzip -c target/release/deno > target/release/deno_${TRAVIS_OS_NAME}_x64.gz
Expand Down
2 changes: 1 addition & 1 deletion build
Submodule build updated 302 files
2 changes: 1 addition & 1 deletion gclient_config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
solutions = [{
'url':
'https://chromium.googlesource.com/v8/v8.git@7.7.200',
'https://chromium.googlesource.com/v8/v8.git@7.9.8',
'name': 'v8',
'deps_file': 'DEPS',
'custom_deps': {
Expand Down
2 changes: 1 addition & 1 deletion third_party
Submodule third_party updated 1945 files
3 changes: 3 additions & 0 deletions tools/third_party.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ def tp(*subpath_parts):
return root("third_party", *subpath_parts)


build_path = root("build")

third_party_path = tp()
depot_tools_path = tp("depot_tools")
rust_crates_path = tp("rust_crates")
Expand Down Expand Up @@ -52,6 +54,7 @@ def python_env(env=None, merge_env=None):
python_site_env = {}
temp = os.environ["PATH"], sys.path
os.environ["PATH"], sys.path = "", []
site.addsitedir(build_path) # Modifies PATH and sys.path.
site.addsitedir(python_packages_path) # Modifies PATH and sys.path.
python_site_env = {"PATH": os.environ["PATH"], "PYTHONPATH": sys.path}
os.environ["PATH"], sys.path = temp
Expand Down