Skip to content

Commit

Permalink
Revert "Don't run tests on Janky CI"
Browse files Browse the repository at this point in the history
This reverts commit b5b2df8.
  • Loading branch information
zcbenz committed May 23, 2017
1 parent ff08c36 commit 9f3fe58
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions script/cibuild
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ LINUX_DEPS_ARM = [
def main():
os.environ['CI'] = '1'

is_janky = os.environ.has_key('JANKY_SHA1')
if is_janky:
if os.environ.has_key('JANKY_SHA1'):
setup_nodenv()

# Ignore the CXX and CC env in CI.
Expand Down Expand Up @@ -89,9 +88,7 @@ def main():
run_script('upload.py')
else:
run_script('build.py', ['-c', 'D'])
if PLATFORM == 'win32' or \
(PLATFORM == 'darwin' and target_arch == 'x64') or \
(PLATFORM == 'linux' and not is_janky and target_arch == 'x64'):
if PLATFORM == 'win32' or target_arch == 'x64':
run_script('test.py', ['--ci'])
run_script('verify-ffmpeg.py')

Expand Down

0 comments on commit 9f3fe58

Please sign in to comment.