Fix jsc execution in Circle CI (#2363)

This commit is contained in:
Leo Balter 2019-09-24 13:48:08 -04:00 committed by GitHub
parent a03455a080
commit fa3d4a5190
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -30,8 +30,11 @@ execution_steps: &execution_steps
- *restore_cache - *restore_cache
- run: npm install - run: npm install
- *save_cache - *save_cache
- run: ./node_modules/.bin/jsvu --os=linux64 --engines=$hostName - run:
- run: cp -r ~/.jsvu r name: fetch engines from jsvu
command: |
./node_modules/.bin/jsvu --os=linux64 --engines=$hostName
cp -r ~/.jsvu r
- run: npm run ci - run: npm run ci
jobs: jobs:
@ -125,6 +128,7 @@ jobs:
- image: *node_latest - image: *node_latest
working_directory: ~/test262 working_directory: ~/test262
environment: environment:
LANG: C
hostType: jsc hostType: jsc
hostPath: r/javascriptcore hostPath: r/javascriptcore
hostName: javascriptcore hostName: javascriptcore