diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index d5df6cec..2d31cc09 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -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" } diff --git a/bench/bench.py b/bench/bench.py index b4b1eb1d..e78e96a8 100644 --- a/bench/bench.py +++ b/bench/bench.py @@ -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: