benchmark_driver 0.15.14 → 0.15.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d1052380e38062b6a13370022a91959621902cf2d08263d29fc504c9297655f
4
- data.tar.gz: 32067954ee2170d157f974ead3dce80aa7a2d0dca6f322f2aae053693775a656
3
+ metadata.gz: d6a5ecae78649aa29ad4d54635e170cb6ab998cc1f4e67102a821dd39a5646ac
4
+ data.tar.gz: 0c131020c654dc8b4fb6cf40dd134fc959267602722d8eaa538f39c2e99768cd
5
5
  SHA512:
6
- metadata.gz: d8d5417b30e026ea54fe080f434b89fde4c36f8136b3ea082b972d032730ed421d019c5eb2213efbcf5d0e905cc41ced746db31a0af5f1f3c8edfb1ecfb16320
7
- data.tar.gz: 72da43bfd0d31749296ceb806da6210a86d55ad1046a06a8b2664e023c8ace1f782e1df1f7919205d4e9e95abc736440360fab1a1f8c6824028abc0698ebd2a8
6
+ metadata.gz: 1e471938da9128c589182326c6dcbc6a0eb62249150165452b96635f598c2ad8b3e322107ee41b51f440d6ddaaffd5735d5b8046a660abdfaea9cdf64322d433
7
+ data.tar.gz: 3f4ce47df9e8d5b62c3bd73aef5ebe89976b44886ccf94bd3d78b9f58a62538744f62b6dd709eb70216257183efa888d0e1be1ed5cac29e4a77c2a8498002dde
@@ -1,3 +1,8 @@
1
+ # v0.15.15
2
+
3
+ - An absolute path is passed to `command_stdout`'s `working_directory`
4
+ and v0.15.14's relative path resolution of job type
5
+
1
6
  # v0.15.14
2
7
 
3
8
  - YAML's `type` key allows a value with `/` to specify a relative path of a runner plugin
@@ -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:'
@@ -1,3 +1,3 @@
1
1
  module BenchmarkDriver
2
- VERSION = '0.15.14'
2
+ VERSION = '0.15.15'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: benchmark_driver
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.14
4
+ version: 0.15.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Kokubun