mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
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:
parent
6efe4165aa
commit
071883d4b4
2 changed files with 2 additions and 3 deletions
2
.github/workflows/benchmark.yml
vendored
2
.github/workflows/benchmark.yml
vendored
|
@ -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" }
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue