benchmark_driver 0.15.14 → 0.15.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/exe/benchmark-driver +1 -1
- data/lib/benchmark_driver/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6a5ecae78649aa29ad4d54635e170cb6ab998cc1f4e67102a821dd39a5646ac
|
|
4
|
+
data.tar.gz: 0c131020c654dc8b4fb6cf40dd134fc959267602722d8eaa538f39c2e99768cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e471938da9128c589182326c6dcbc6a0eb62249150165452b96635f598c2ad8b3e322107ee41b51f440d6ddaaffd5735d5b8046a660abdfaea9cdf64322d433
|
|
7
|
+
data.tar.gz: 3f4ce47df9e8d5b62c3bd73aef5ebe89976b44886ccf94bd3d78b9f58a62538744f62b6dd709eb70216257183efa888d0e1be1ed5cac29e4a77c2a8498002dde
|
data/CHANGELOG.md
CHANGED
data/exe/benchmark-driver
CHANGED
|
@@ -124,7 +124,7 @@ jobs = config.paths.flat_map do |path|
|
|
|
124
124
|
|
|
125
125
|
begin
|
|
126
126
|
# `working_directory` is YAML-specific special parameter, mainly for "command_stdout"
|
|
127
|
-
BenchmarkDriver::JobParser.parse(job, working_directory: File.dirname(path))
|
|
127
|
+
BenchmarkDriver::JobParser.parse(job, working_directory: File.expand_path(File.dirname(path)))
|
|
128
128
|
rescue ArgumentError
|
|
129
129
|
$stderr.puts "benchmark-driver: Failed to parse #{path.dump}."
|
|
130
130
|
$stderr.puts ' YAML format may be wrong. See error below:'
|