xed/ci.py
Robert Cohn ed8210639a Move ci logic to ci.py
Easier to maintain. We lose parallelism, but it was not helping much
because setup time was longer than build time.
2016-12-20 12:31:39 +00:00

10 lines
259 B
Python

import os
import platform
import subprocess
for size in ['ia32','x86-64']:
for link in ['','--shared']:
cmd = 'python mfile.py --build-dir=build host_cpu=%s %s test' % (size,link)
print(cmd)
subprocess.check_call(cmd, shell=True)