diff options
author | Sam Clegg <sbc@chromium.org> | 2020-04-21 13:49:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-21 10:49:45 -0700 |
commit | 8e017e9fe58687251275d6fe8a1a0b23813c3b1e (patch) | |
tree | 17f1a070c368096242c98dd4aba5619b1470ded7 /check.py | |
parent | 483d759230f4693abfca3a74a97b1c1db6d2a0d6 (diff) | |
download | binaryen-8e017e9fe58687251275d6fe8a1a0b23813c3b1e.tar.gz binaryen-8e017e9fe58687251275d6fe8a1a0b23813c3b1e.tar.bz2 binaryen-8e017e9fe58687251275d6fe8a1a0b23813c3b1e.zip |
Convert CI from travis + appveyor to github actions (#2646)
The intention is to move away from travis and appveyor which have
become very slow.
See: #2356
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -329,7 +329,7 @@ def run_gcc_tests(): print('run...', output_file) actual = subprocess.check_output([os.path.abspath(output_file)]).decode('utf-8') os.remove(output_file) - if sys.platform == 'darwin': + if sys.platform == 'darwin' and os.path.exists(output_file + '.dSYM'): # Also removes debug directory produced on Mac OS shutil.rmtree(output_file + '.dSYM') |