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 fail-fast: false
matrix: matrix:
os: [ubuntu-latest] os: [ubuntu-latest]
compiler: [g++, clang++] compiler: [g++]
benchResultsRepo: benchResultsRepo:
- { name: "luau-lang/benchmark-data", branch: "main" } - { 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") file = open(os.path.join(scriptdir, "callgrind.out"), "r")
lines = file.readlines() lines = file.readlines()
return getCallgrindOutput(lines) return getCallgrindOutput(lines)
except e: except:
print(e)
return "" return ""
else: else:
with subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, cwd=scriptdir) as p: with subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, cwd=scriptdir) as p: