Only build with gcc for now

Newer clang has issues with valgrind wrt DWARF5 support, and two builds
may hit a race condition with the repository update anyway.
This commit is contained in:
Arseny Kapoulkine 2022-07-01 07:51:51 -07:00
parent 6efe4165aa
commit 071883d4b4
2 changed files with 2 additions and 3 deletions

View file

@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
compiler: [g++, clang++]
compiler: [g++]
benchResultsRepo:
- { name: "luau-lang/benchmark-data", branch: "main" }

View file

@ -104,8 +104,7 @@ def getVmOutput(cmd):
file = open(os.path.join(scriptdir, "callgrind.out"), "r")
lines = file.readlines()
return getCallgrindOutput(lines)
except e:
print(e)
except:
return ""
else:
with subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, cwd=scriptdir) as p: