build: change to download sysroots from the new sysroot bucket (#20803)

* build: change to download sysroots from the new sysroot bucket

* build: add json config files to deps hash to can influence the src dir

* build: update to latest sysroot hash
This commit is contained in:
Samuel Attard 2019-10-29 17:50:24 -07:00 committed by GitHub
parent 5d00494f8d
commit c03ed6d3a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 8 deletions

View file

@ -8,7 +8,9 @@ const HASH_VERSION = 1
// Base files to hash
const filesToHash = [
path.resolve(__dirname, '../DEPS'),
path.resolve(__dirname, '../yarn.lock')
path.resolve(__dirname, '../yarn.lock'),
path.resolve(__dirname, '../script/external-binaries.json'),
path.resolve(__dirname, '../script/sysroots.json')
]
const addAllFiles = (dir) => {