Skip to content

Commit

Permalink
Fix pyenv-version-name not found issue (facebook#7768)
Browse files Browse the repository at this point in the history
Summary:
Remove the workaround for that.

Pull Request resolved: facebook#7768

Reviewed By: cheng-chang

Differential Revision: D25487150

Pulled By: jay-zhuang

fbshipit-source-id: 4514dfc64eb56d2dad48f9a24176c21af8107def
  • Loading branch information
jay-zhuang authored and facebook-github-bot committed Dec 11, 2020
1 parent fd7d8dc commit 07c0fc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ commands:
name: Install gtest-parallel
command: |
git clone --single-branch --branch master --depth 1 https://github.com/google/gtest-parallel.git ~/gtest-parallel
echo "export PATH=$HOME/gtest-parallel:$PATH" >> $BASH_ENV
echo 'export PATH=$HOME/gtest-parallel:$PATH' >> $BASH_ENV
executors:
windows-2xlarge:
Expand Down Expand Up @@ -433,7 +433,7 @@ jobs:
sed -i 's/[[:space:]]*$//; s/ / \.\//g; s/.*/.\/&/' /tmp/test_list
cat /tmp/test_list
export TEST_TMPDIR=/tmp/rocksdb_test_tmp
/usr/bin/python ../gtest-parallel/gtest-parallel $(</tmp/test_list) --output_dir=/tmp | cat # pipe to cat to continuously output status on circleci UI. Otherwise, no status will be printed while the job is running.
gtest-parallel $(</tmp/test_list) --output_dir=/tmp | cat # pipe to cat to continuously output status on circleci UI. Otherwise, no status will be printed while the job is running.
- post-steps

workflows:
Expand Down

0 comments on commit 07c0fc0

Please sign in to comment.