Skip to content

Commit

Permalink
Use the local version of babel
Browse files Browse the repository at this point in the history
  • Loading branch information
jbhoosreddy committed Nov 22, 2019
1 parent 683adcb commit 65a046d
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .circleci/config.yml
Expand Up @@ -101,23 +101,25 @@ jobs:
- run:
name: Setup Test Runner
command: |
git clone --recurse-submodules https://github.com/babel/babel-test262-runner
git clone --recurse-submodules https://github.com/jbhoosreddy/babel-test262-runner
cd babel-test262-runner
git fetch origin local-babel
git checkout local-babel
yarn
yarn add tap-mocha-reporter --dev
curl -L https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 > jq
chmod +x ./jq
for package in ../packages/*/package.json; do
yarn link $(./jq -j ".name" $package)
done
# curl -L https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 > jq
# chmod +x ./jq
# for package in ../packages/*/package.json; do
# yarn link $(./jq -j ".name" $package)
# done
node lib/download-node
- run:
name: Download master branch Test262 artifact
command: node lib/download-master-artifact ~/master.tap
<<: *test262_workdir
- run:
name: Run Test262
command: node lib/run-tests I_AM_SURE | tee ~/test262.tap
command: BABEL_PATH=.. node lib/run-tests I_AM_SURE | tee ~/test262.tap
<<: *test262_workdir
- store_artifacts: *artifact_test262_tap
- run:
Expand Down

0 comments on commit 65a046d

Please sign in to comment.