Lines Matching refs:check_call
6 from subprocess import call, check_call, Popen, PIPE, STDOUT
27 check_call('curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key ' +
29 check_call('echo "deb https://deb.nodesource.com/node_0.10 precise main" ' +
31 check_call(['sudo', 'apt-get', 'update'])
32 check_call(['sudo', 'apt-get', 'install', 'python-virtualenv', 'nodejs'])
33 check_call(['sudo', 'npm', 'install', '-g', 'less@2.6.1', 'less-plugin-clean-css'])
37 check_call(['sudo', 'dpkg', '-i', deb_file])
59 check_call(['git', 'clone', git_url + 'fmtlib/{}.git'.format(repo)])
65 check_call(['git', 'config', '--global', 'user.name', 'amplbot'])
66 check_call(['git', 'config', '--global', 'user.email', 'viz@ampl.com'])
68 check_call(['git', 'add', '--all'], cwd=repo)
70 check_call(['git', 'commit', '-m', 'Update documentation'], cwd=repo)
98 check_call(['cmake', '-DFMT_DOC=OFF', '-DFMT_PEDANTIC=ON', '-DFMT_WERROR=ON', fmt_dir] +
102 check_call(['cmake', '--build','.'], cwd=build_dir)
113 check_call(['make', 'install'], cwd=build_dir)
117 check_call(['cmake', os.path.join(fmt_dir, "test", "find-package-test")] +
119 check_call(['make', '-j4'], cwd=test_build_dir)