We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fc9bec commit e073594Copy full SHA for e073594
.circleci/config.yml
@@ -71,7 +71,7 @@ jobs:
71
docker:
72
- image: cimg/base:2019.08
73
working_directory: ~/repo
74
- parallelism: 6
+ parallelism: 12
75
steps:
76
- checkout
77
- install-circleci
src/parse-taps.bash
@@ -9,7 +9,7 @@ parse_it(){
9
$line=$1
10
NAME=$(expr "$line" : '.*ok [0-9]* \(.*\) #time.*')
11
TIME=$(expr "$line" : '.*ok [0-9]*.*\#time=\(.*\)')
12
- printf "${test}" "${NAME}" ${TIME}
+ printf "${test}" "${NAME}" "${NAME}" ${TIME}
13
}
14
15
0 commit comments