We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d83420 commit 7461ff4Copy full SHA for 7461ff4
.github/workflows/perf.yml
@@ -10,7 +10,7 @@ jobs:
10
uses: actions/checkout@master
11
with:
12
fetch-depth: 1
13
- - name: Install Swift
+ - name: Run Benchmark
14
run: |
15
git clone https://github.com/kylef/swiftenv.git ~/.swiftenv
16
export SWIFTENV_ROOT="$HOME/.swiftenv"
perf-tester/src/utils.js
@@ -32,7 +32,7 @@ function parse(benchmarkData) {
32
const benchmarks = Object.create(null)
33
for (let i = 0; i < lines.length - 1; i += 2) {
34
const [, name] = firstLineRe.exec(lines[i])
35
- const [, time] = secondLineRe.exec(lines[i])
+ const [, time] = secondLineRe.exec(lines[i + 1])
36
benchmarks[name] = parseFloat(time)
37
}
38
return benchmarks
0 commit comments