github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/yaml/testdata/definitions/example9.yaml.golden (about) 1 { 2 "definitions": { 3 "caches": { 4 "my-bundler-cache": { 5 "key": { 6 "files": [ 7 "Gemfile.lock", 8 "**/*.gemspec" 9 ] 10 }, 11 "path": "vendor/bundle" 12 } 13 } 14 }, 15 "pipelines": { 16 "default": [ 17 { 18 "step": { 19 "caches": [ 20 "my-bundler-cache" 21 ], 22 "script": [ 23 "bundle install --path vendor/bundle", 24 "ruby -e 'print \"Hello, World\\n\"'" 25 ] 26 } 27 } 28 ] 29 } 30 }