circle_ci_wrapper 0.0.2 → 0.0.3

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: 1d852d5ffa13bd62fa5dbc5ce2ef1ffaa940ae56f3ae69e5eacc3a1c7440ccbf
4
- data.tar.gz: 2e5d9bbd00ce13f6044d932f6537e67f02dade8c19a64c9b02abc579ea1cc8b4
3
+ metadata.gz: 1259a2cdb1b46a3ce776b9d46882323bf9079150eec0a532a1290b8f08905b5b
4
+ data.tar.gz: 00b5f1f5a00a2353096e5c406055815ad7e39ac58c0f3b20444d12f18adb46c7
5
5
  SHA512:
6
- metadata.gz: 4323782d63b5b3b0a500831298a1580cf8eea67b47c316ab60c6a3602b4d4bfdeb3bcc31816a89af28a2ba3cf877985d44ca6aeb4649eb0dfad371712c691e85
7
- data.tar.gz: 4063c372efde73c0e8c95a736ef89bbb33892c9666d47e926740a69bc9ec69d203aa5bd5d6d8cbcabb45719c7ac8774b020d31500a133c1abf128207188f7a88
6
+ metadata.gz: 6652096bbbce966660b255995ccd751faddb6d2421e8437613365ddb4d2cf66d47db58c18f27adb902846f1449acbf35acb75c0d1941565e64a2c8534aab4295
7
+ data.tar.gz: e49b29333126f6439a843c4899d959eaa74fceaace055495ebf5b51360b382ae20d1fb7c3ba5af11ad2c64b9999020fff9779842c65d1bbc8d7a6987651bbbc7
@@ -0,0 +1,74 @@
1
+ version: 2.1
2
+ workflows:
3
+ test-workflow:
4
+ jobs:
5
+ - build:
6
+ context: EdgePetrolApp
7
+ jobs:
8
+ build:
9
+ docker:
10
+ - image: circleci/ruby:2.7.1
11
+ environment:
12
+ RUBYOPT: '-W0 -KU -E utf-8:utf-8'
13
+
14
+ steps:
15
+ - checkout
16
+ - run:
17
+ name: Install Cmake
18
+ command: sudo apt-get install cmake
19
+ - restore_cache:
20
+ keys:
21
+ - edge-bundle-{{ checksum "Gemfile.lock" }}
22
+ - edge-bundle-
23
+ - run:
24
+ name: Bundle Check or Install
25
+ command: bundle check --path vendor/bundle || bundle install --jobs=4 --retry=3 --path vendor/bundle
26
+ - save_cache:
27
+ key: edge-bundle-{{ checksum "Gemfile.lock" }}
28
+ paths:
29
+ - vendor/bundle
30
+ - run:
31
+ name: Lint code
32
+ command: bundle exec rubocop
33
+ - run:
34
+ name: Execute Rspec Tests
35
+ command: |
36
+ mkdir -p /tmp/coverage
37
+ bundle exec rspec
38
+ - run:
39
+ name: Store coverage report
40
+ command: |
41
+ mv coverage/coverage.json /tmp/coverage/
42
+ mv coverage/shield-coverage.json /tmp/coverage/
43
+ - persist_to_workspace:
44
+ root: /tmp/coverage
45
+ paths: .
46
+ - store_artifacts:
47
+ path: /tmp/coverage
48
+ destination: coverage
49
+ - run:
50
+ name: Upload coverage to be persistent
51
+ command: |
52
+ mkdir -p /tmp/internal
53
+ cd /tmp/internal
54
+ git config --global user.email "bot@edgepetrol.com"
55
+ git config --global user.name "EdgeBot"
56
+ git clone https://EdgePetrolBot:${DANGER_GITHUB_API_TOKEN}@github.com/EdgePetrol/coverage.git
57
+ cd coverage
58
+ mkdir -p ${CIRCLE_PROJECT_REPONAME}/${CIRCLE_BRANCH}
59
+ mv /tmp/coverage/* /tmp/internal/coverage/${CIRCLE_PROJECT_REPONAME}/${CIRCLE_BRANCH}
60
+ git add . && git commit -m "Add ${CIRCLE_PROJECT_REPONAME} coverage"
61
+ git push --set-upstream origin master
62
+ - run:
63
+ name: Run gem build and push
64
+ command: |-
65
+ if [ "${CIRCLE_BRANCH}" == "master" ]; then
66
+ git config --global user.email "bot@edgepetrol.com"
67
+ git config --global user.name "EdgeBot"
68
+ gem install gem-release --no-document
69
+ gem bump --skip-ci
70
+ git remote set-url --push origin https://EdgePetrolBot:${DANGER_GITHUB_API_TOKEN}@github.com/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}.git
71
+ git push --set-upstream origin ${CIRCLE_BRANCH}
72
+ GEM_VERSION=$(gem build | awk '/File/ {print $2}')
73
+ curl -X POST https://rubygems.org/api/v1/gems -H "Authorization:${RUBY_GEMS_API_TOKEN}" -H "Content-Type: application/gem" --data-binary "@${GEM_VERSION}"
74
+ fi
@@ -0,0 +1,2 @@
1
+ bump:
2
+ file: lib/circle_ci_wrapper/version.rb
@@ -0,0 +1,12 @@
1
+ # Defaults can be found here: https://github.com/bbatsov/rubocop/blob/master/config/default.yml
2
+
3
+ # If you don't like these settings, just delete this file :)
4
+ AllCops:
5
+ NewCops: enable
6
+
7
+ Metrics/BlockLength:
8
+ Exclude:
9
+ - '**/spec/**/*'
10
+
11
+ Style/SpecialGlobalVars:
12
+ Enabled: false
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ # Specify your gem's dependencies in danger-rcov.gemspec
6
+ gemspec
@@ -0,0 +1,77 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ circle_ci_wrapper (0.0.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ ast (2.4.1)
10
+ coderay (1.1.3)
11
+ diff-lcs (1.4.4)
12
+ docile (1.3.2)
13
+ json (2.3.1)
14
+ method_source (1.0.0)
15
+ parallel (1.19.2)
16
+ parser (2.7.1.4)
17
+ ast (~> 2.4.1)
18
+ pry (0.13.1)
19
+ coderay (~> 1.1)
20
+ method_source (~> 1.0)
21
+ rainbow (3.0.0)
22
+ rake (12.3.3)
23
+ regexp_parser (1.7.1)
24
+ rexml (3.2.4)
25
+ rspec (3.9.0)
26
+ rspec-core (~> 3.9.0)
27
+ rspec-expectations (~> 3.9.0)
28
+ rspec-mocks (~> 3.9.0)
29
+ rspec-core (3.9.2)
30
+ rspec-support (~> 3.9.3)
31
+ rspec-expectations (3.9.2)
32
+ diff-lcs (>= 1.2.0, < 2.0)
33
+ rspec-support (~> 3.9.0)
34
+ rspec-mocks (3.9.1)
35
+ diff-lcs (>= 1.2.0, < 2.0)
36
+ rspec-support (~> 3.9.0)
37
+ rspec-support (3.9.3)
38
+ rubocop (0.85.1)
39
+ parallel (~> 1.10)
40
+ parser (>= 2.7.0.1)
41
+ rainbow (>= 2.2.2, < 4.0)
42
+ regexp_parser (>= 1.7)
43
+ rexml
44
+ rubocop-ast (>= 0.0.3)
45
+ ruby-progressbar (~> 1.7)
46
+ unicode-display_width (>= 1.4.0, < 2.0)
47
+ rubocop-ast (0.4.2)
48
+ parser (>= 2.7.1.4)
49
+ ruby-progressbar (1.10.1)
50
+ simplecov (0.19.0)
51
+ docile (~> 1.1)
52
+ simplecov-html (~> 0.11)
53
+ simplecov-html (0.12.2)
54
+ simplecov-json (0.2.1)
55
+ json
56
+ simplecov
57
+ simplecov-shield-json (0.0.6)
58
+ json
59
+ simplecov
60
+ unicode-display_width (1.7.0)
61
+
62
+ PLATFORMS
63
+ ruby
64
+
65
+ DEPENDENCIES
66
+ bundler (~> 2.1)
67
+ circle_ci_wrapper!
68
+ pry (~> 0.13)
69
+ rake (~> 12.3)
70
+ rspec (~> 3.4)
71
+ rubocop (~> 0.85.1)
72
+ simplecov
73
+ simplecov-json
74
+ simplecov-shield-json
75
+
76
+ BUNDLED WITH
77
+ 2.1.4
@@ -0,0 +1,13 @@
1
+ [![EdgePetrol](https://circleci.com/gh/EdgePetrol/circle_ci.svg?style=shield)](https://app.circleci.com/pipelines/github/EdgePetrol/circle_ci)
2
+ ![EdgePetrol](https://img.shields.io/endpoint?url=https://edgepetrol.github.io/coverage/circle_ci/master/shield-coverage.json)
3
+ ![Gem](https://img.shields.io/gem/v/circle_ci_wrapper)
4
+
5
+ # circle_ci_wrapper
6
+
7
+ CircleCI API Wrapper
8
+
9
+ ## Usage
10
+
11
+ 1. Add circle_ci_wrapper to your `Gemfile` and `bundle install`:
12
+
13
+ gem 'circle_ci_wrapper', require: false
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path('lib', __dir__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'circle_ci_wrapper/version'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'circle_ci_wrapper'
9
+ spec.version = CircleCiWrapper::VERSION
10
+ spec.authors = ['Guilherme Pereira']
11
+ spec.email = ['guilhermepereira@edgepetrol.com']
12
+ spec.description = %(CircleCI API wrapper)
13
+ spec.summary = %(CircleCI API wrapper to help find build artifacts)
14
+ spec.homepage = 'https://github.com/EdgePetrol/circle_ci'
15
+ spec.license = 'MIT'
16
+ spec.required_ruby_version = '>= 2.4.0'
17
+
18
+ spec.files = `git ls-files`.split($/)
19
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
+ spec.require_paths = ['lib']
21
+
22
+ # General ruby development
23
+ spec.add_development_dependency 'bundler', '~> 2.1'
24
+ spec.add_development_dependency 'pry', '~> 0.13'
25
+ spec.add_development_dependency 'rake', '~> 12.3'
26
+ spec.add_development_dependency 'rspec', '~> 3.4'
27
+ spec.add_development_dependency 'rubocop', '~> 0.85.1'
28
+ spec.add_development_dependency 'simplecov'
29
+ spec.add_development_dependency 'simplecov-json'
30
+ spec.add_development_dependency 'simplecov-shield-json'
31
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ class CircleCiWrapper
4
+ VERSION = '0.0.3'
5
+ end
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+
3
+ require File.expand_path('../spec_helper', __dir__)
4
+ require File.expand_path('../../lib/circle_ci_wrapper', __dir__)
5
+
6
+ RSpec.describe CircleCiWrapper do
7
+ before do
8
+ allow(ENV).to receive(:[]).with('CIRCLE_PROJECT_USERNAME').and_return('EdgePetrol')
9
+ allow(ENV).to receive(:[]).with('CIRCLE_PROJECT_REPONAME').and_return('danger-rcov')
10
+ end
11
+
12
+ describe '#report_urls_by_branch' do
13
+ let(:response) { File.read("#{File.dirname(__FILE__)}/../support/fixtures/tree_ci.json") }
14
+ let(:curr_cov_response) { File.read("#{File.dirname(__FILE__)}/../support/fixtures/current_circle_ci.json") }
15
+ let(:master_cov_response) { File.read("#{File.dirname(__FILE__)}/../support/fixtures/master_circle_ci.json") }
16
+
17
+ before do
18
+ allow(ENV).to receive(:[]).with('CIRCLE_TOKEN').and_return('token')
19
+ allow(ENV).to receive(:[]).with('CIRCLE_BUILD_NUM').and_return(56)
20
+
21
+ allow(Net::HTTP).to receive_message_chain(:get_response, :code).and_return('200')
22
+ allow(URI).to receive_message_chain(:parse, :read).and_return(response)
23
+
24
+ current_coverage = Struct.new(:read)
25
+ allow(URI).to receive(:parse).with('https://circleci.com/api/v1.1/project/github/EdgePetrol/danger-rcov/56/artifacts?circle-token=token').and_return(current_coverage)
26
+ allow(current_coverage).to receive(:read).and_return(curr_cov_response)
27
+
28
+ coverage = Struct.new(:read)
29
+ allow(URI).to receive(:parse).with('https://circleci.com/api/v1.1/project/github/EdgePetrol/danger-rcov/85/artifacts?circle-token=token').and_return(coverage)
30
+ allow(coverage).to receive(:read).and_return(master_cov_response)
31
+ end
32
+
33
+ it 'returns the correct urls' do
34
+ expect(described_class.report_urls_by_branch('staging')).to eq(
35
+ [
36
+ 'https://current.circle-artifacts.com/0/coverage/coverage.json?circle-token=token&branch=',
37
+ 'https://master.circle-artifacts.com/0/coverage/coverage.json?circle-token=token&branch=staging'
38
+ ]
39
+ )
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'pathname'
4
+ ROOT = Pathname.new(File.expand_path('..', __dir__))
5
+ $:.unshift("#{ROOT}lib")
6
+ $:.unshift("#{ROOT}spec")
7
+
8
+ require 'bundler/setup'
9
+
10
+ require 'rspec'
11
+
12
+ require 'simplecov'
13
+ require 'simplecov-json'
14
+ require 'simplecov-shield-json'
15
+
16
+ SimpleCov.formatters = SimpleCov::Formatter::MultiFormatter.new(
17
+ [
18
+ SimpleCov::Formatter::HTMLFormatter,
19
+ SimpleCov::Formatter::JSONFormatter,
20
+ SimpleCov::Formatter::ShieldJSONFormatter
21
+ ]
22
+ )
23
+ SimpleCov.start do
24
+ add_filter 'spec'
25
+ end
26
+
27
+ # Use coloured output, it's the best.
28
+ RSpec.configure do |config|
29
+ config.filter_gems_from_backtrace 'bundler'
30
+ config.color = true
31
+ config.tty = true
32
+ end
@@ -0,0 +1,6 @@
1
+ [ {
2
+ "path" : "coverage/coverage.json",
3
+ "pretty_path" : "coverage/coverage.json",
4
+ "node_index" : 0,
5
+ "url" : "https://current.circle-artifacts.com/0/coverage/coverage.json"
6
+ } ]
@@ -0,0 +1,6 @@
1
+ [ {
2
+ "path" : "coverage/coverage.json",
3
+ "pretty_path" : "coverage/coverage.json",
4
+ "node_index" : 0,
5
+ "url" : "https://master.circle-artifacts.com/0/coverage/coverage.json"
6
+ } ]
@@ -0,0 +1,666 @@
1
+ [ {
2
+ "compare" : null,
3
+ "previous_successful_build" : null,
4
+ "build_parameters" : {
5
+ "CIRCLE_JOB" : "install-helm-chart-3"
6
+ },
7
+ "oss" : false,
8
+ "all_commit_details_truncated" : false,
9
+ "committer_date" : "2020-08-12T12:18:56.000Z",
10
+ "body" : "[EDG-2878] Add helm setup",
11
+ "usage_queued_at" : "2020-08-12T12:24:07.481Z",
12
+ "context_ids" : [ "EdgePetrol-EKS-AWS-Staging" ],
13
+ "fail_reason" : null,
14
+ "retry_of" : null,
15
+ "reponame" : "events-service",
16
+ "ssh_users" : [ ],
17
+ "build_url" : "https://circleci.com/gh/EdgePetrol/events-service/88",
18
+ "parallel" : 1,
19
+ "failed" : false,
20
+ "branch" : "staging",
21
+ "username" : "EdgePetrol",
22
+ "author_date" : "2020-08-12T12:18:56.000Z",
23
+ "why" : "github",
24
+ "user" : {
25
+ "is_user" : true,
26
+ "login" : "guiferrpereira",
27
+ "avatar_url" : "https://avatars1.githubusercontent.com/u/756762?v=4",
28
+ "name" : "Guilherme Pereira",
29
+ "vcs_type" : "github",
30
+ "id" : 756762
31
+ },
32
+ "vcs_revision" : "a19872d95a7edf499fe4d35b17050041851498ef",
33
+ "workflows" : {
34
+ "job_name" : "install-helm-chart-3",
35
+ "job_id" : "a0e69edc-6d7d-4fb1-af57-2c12ba81c8df",
36
+ "workflow_id" : "5bdb0bd4-35e3-453a-9fb8-ff1b0ad38901",
37
+ "workspace_id" : "5bdb0bd4-35e3-453a-9fb8-ff1b0ad38901",
38
+ "upstream_job_ids" : [ "78fcb3de-1070-4e57-837f-44c30cb08a70", "24e4658d-cc02-47a8-b553-9e26832a22dc", "14a66b97-6a76-4512-9ae9-c5272e1e634f" ],
39
+ "upstream_concurrency_map" : {
40
+ "24e4658d_cc02_47a8_b553_9e26832a22dc" : [ "78fcb3de-1070-4e57-837f-44c30cb08a70" ],
41
+ "78fcb3de_1070_4e57_837f_44c30cb08a70" : [ "24e4658d-cc02-47a8-b553-9e26832a22dc" ]
42
+ },
43
+ "workflow_name" : "release-helm-chart"
44
+ },
45
+ "vcs_tag" : null,
46
+ "build_num" : 88,
47
+ "infrastructure_fail" : false,
48
+ "committer_email" : "noreply@github.com",
49
+ "has_artifacts" : true,
50
+ "previous" : {
51
+ "build_num" : 87,
52
+ "status" : "success",
53
+ "build_time_millis" : 160813
54
+ },
55
+ "status" : "success",
56
+ "committer_name" : "GitHub",
57
+ "retries" : null,
58
+ "subject" : "Merge pull request #3 from EdgePetrol/feature/EDG-2878",
59
+ "vcs_type" : "github",
60
+ "timedout" : false,
61
+ "dont_build" : null,
62
+ "lifecycle" : "finished",
63
+ "no_dependency_cache" : false,
64
+ "stop_time" : "2020-08-12T12:24:38.056Z",
65
+ "ssh_disabled" : false,
66
+ "build_time_millis" : 26637,
67
+ "picard" : null,
68
+ "circle_yml" : null,
69
+ "messages" : [ ],
70
+ "is_first_green_build" : false,
71
+ "job_name" : null,
72
+ "start_time" : "2020-08-12T12:24:11.419Z",
73
+ "canceler" : null,
74
+ "all_commit_details" : [ {
75
+ "committer_date" : "2020-08-12T11:55:39.000Z",
76
+ "body" : "",
77
+ "branch" : "staging",
78
+ "author_date" : "2020-08-12T11:55:39.000Z",
79
+ "committer_email" : "guiferrpereira@gmail.com",
80
+ "commit" : "19e1b4db40c2184bfca1885fe8d14db78cf8f288",
81
+ "committer_login" : "guiferrpereira",
82
+ "committer_name" : "Guilherme Pereira",
83
+ "subject" : "[EDG-2878] Add helm setup",
84
+ "commit_url" : "https://github.com/EdgePetrol/events-service/commit/19e1b4db40c2184bfca1885fe8d14db78cf8f288",
85
+ "author_login" : "guiferrpereira",
86
+ "author_name" : "Guilherme Pereira",
87
+ "author_email" : "guiferrpereira@gmail.com"
88
+ }, {
89
+ "committer_date" : "2020-08-12T12:18:56.000Z",
90
+ "body" : "[EDG-2878] Add helm setup",
91
+ "branch" : "staging",
92
+ "author_date" : "2020-08-12T12:18:56.000Z",
93
+ "committer_email" : "noreply@github.com",
94
+ "commit" : "a19872d95a7edf499fe4d35b17050041851498ef",
95
+ "committer_login" : "web-flow",
96
+ "committer_name" : "GitHub",
97
+ "subject" : "Merge pull request #3 from EdgePetrol/feature/EDG-2878",
98
+ "commit_url" : "https://github.com/EdgePetrol/events-service/commit/a19872d95a7edf499fe4d35b17050041851498ef",
99
+ "author_login" : "guiferrpereira",
100
+ "author_name" : "Guilherme Pereira",
101
+ "author_email" : "guiferrpereira@gmail.com"
102
+ } ],
103
+ "platform" : "1.0",
104
+ "outcome" : "success",
105
+ "vcs_url" : "https://github.com/EdgePetrol/events-service",
106
+ "author_name" : "Guilherme Pereira",
107
+ "node" : null,
108
+ "queued_at" : "2020-08-12T12:24:07.509Z",
109
+ "canceled" : false,
110
+ "author_email" : "guiferrpereira@gmail.com"
111
+ }, {
112
+ "compare" : null,
113
+ "previous_successful_build" : null,
114
+ "build_parameters" : {
115
+ "CIRCLE_JOB" : "build-and-push-image-staging"
116
+ },
117
+ "oss" : false,
118
+ "all_commit_details_truncated" : false,
119
+ "committer_date" : "2020-08-12T12:18:56.000Z",
120
+ "body" : "[EDG-2878] Add helm setup",
121
+ "usage_queued_at" : "2020-08-12T12:21:09.493Z",
122
+ "context_ids" : [ "EdgePetrol-EKS-AWS-Staging" ],
123
+ "fail_reason" : null,
124
+ "retry_of" : null,
125
+ "reponame" : "events-service",
126
+ "ssh_users" : [ ],
127
+ "build_url" : "https://circleci.com/gh/EdgePetrol/events-service/87",
128
+ "parallel" : 1,
129
+ "failed" : false,
130
+ "branch" : "staging",
131
+ "username" : "EdgePetrol",
132
+ "author_date" : "2020-08-12T12:18:56.000Z",
133
+ "why" : "github",
134
+ "user" : {
135
+ "is_user" : true,
136
+ "login" : "guiferrpereira",
137
+ "avatar_url" : "https://avatars1.githubusercontent.com/u/756762?v=4",
138
+ "name" : "Guilherme Pereira",
139
+ "vcs_type" : "github",
140
+ "id" : 756762
141
+ },
142
+ "vcs_revision" : "a19872d95a7edf499fe4d35b17050041851498ef",
143
+ "workflows" : {
144
+ "job_name" : "build-and-push-image-staging",
145
+ "job_id" : "14a66b97-6a76-4512-9ae9-c5272e1e634f",
146
+ "workflow_id" : "5bdb0bd4-35e3-453a-9fb8-ff1b0ad38901",
147
+ "workspace_id" : "5bdb0bd4-35e3-453a-9fb8-ff1b0ad38901",
148
+ "upstream_job_ids" : [ "78fcb3de-1070-4e57-837f-44c30cb08a70", "24e4658d-cc02-47a8-b553-9e26832a22dc" ],
149
+ "upstream_concurrency_map" : {
150
+ "24e4658d_cc02_47a8_b553_9e26832a22dc" : [ "78fcb3de-1070-4e57-837f-44c30cb08a70" ],
151
+ "78fcb3de_1070_4e57_837f_44c30cb08a70" : [ "24e4658d-cc02-47a8-b553-9e26832a22dc" ]
152
+ },
153
+ "workflow_name" : "release-helm-chart"
154
+ },
155
+ "vcs_tag" : null,
156
+ "build_num" : 87,
157
+ "infrastructure_fail" : false,
158
+ "committer_email" : "noreply@github.com",
159
+ "has_artifacts" : true,
160
+ "previous" : {
161
+ "build_num" : 86,
162
+ "status" : "success",
163
+ "build_time_millis" : 18795
164
+ },
165
+ "status" : "success",
166
+ "committer_name" : "GitHub",
167
+ "retries" : null,
168
+ "subject" : "Merge pull request #3 from EdgePetrol/feature/EDG-2878",
169
+ "vcs_type" : "github",
170
+ "timedout" : false,
171
+ "dont_build" : null,
172
+ "lifecycle" : "finished",
173
+ "no_dependency_cache" : false,
174
+ "stop_time" : "2020-08-12T12:24:07.096Z",
175
+ "ssh_disabled" : false,
176
+ "build_time_millis" : 160813,
177
+ "picard" : null,
178
+ "circle_yml" : null,
179
+ "messages" : [ ],
180
+ "is_first_green_build" : false,
181
+ "job_name" : null,
182
+ "start_time" : "2020-08-12T12:21:26.283Z",
183
+ "canceler" : null,
184
+ "all_commit_details" : [ {
185
+ "committer_date" : "2020-08-12T11:55:39.000Z",
186
+ "body" : "",
187
+ "branch" : "staging",
188
+ "author_date" : "2020-08-12T11:55:39.000Z",
189
+ "committer_email" : "guiferrpereira@gmail.com",
190
+ "commit" : "19e1b4db40c2184bfca1885fe8d14db78cf8f288",
191
+ "committer_login" : "guiferrpereira",
192
+ "committer_name" : "Guilherme Pereira",
193
+ "subject" : "[EDG-2878] Add helm setup",
194
+ "commit_url" : "https://github.com/EdgePetrol/events-service/commit/19e1b4db40c2184bfca1885fe8d14db78cf8f288",
195
+ "author_login" : "guiferrpereira",
196
+ "author_name" : "Guilherme Pereira",
197
+ "author_email" : "guiferrpereira@gmail.com"
198
+ }, {
199
+ "committer_date" : "2020-08-12T12:18:56.000Z",
200
+ "body" : "[EDG-2878] Add helm setup",
201
+ "branch" : "staging",
202
+ "author_date" : "2020-08-12T12:18:56.000Z",
203
+ "committer_email" : "noreply@github.com",
204
+ "commit" : "a19872d95a7edf499fe4d35b17050041851498ef",
205
+ "committer_login" : "web-flow",
206
+ "committer_name" : "GitHub",
207
+ "subject" : "Merge pull request #3 from EdgePetrol/feature/EDG-2878",
208
+ "commit_url" : "https://github.com/EdgePetrol/events-service/commit/a19872d95a7edf499fe4d35b17050041851498ef",
209
+ "author_login" : "guiferrpereira",
210
+ "author_name" : "Guilherme Pereira",
211
+ "author_email" : "guiferrpereira@gmail.com"
212
+ } ],
213
+ "platform" : "1.0",
214
+ "outcome" : "success",
215
+ "vcs_url" : "https://github.com/EdgePetrol/events-service",
216
+ "author_name" : "Guilherme Pereira",
217
+ "node" : null,
218
+ "queued_at" : "2020-08-12T12:21:09.534Z",
219
+ "canceled" : false,
220
+ "author_email" : "guiferrpereira@gmail.com"
221
+ }, {
222
+ "compare" : null,
223
+ "previous_successful_build" : null,
224
+ "build_parameters" : {
225
+ "CIRCLE_JOB" : "lint-dockerfile"
226
+ },
227
+ "oss" : false,
228
+ "all_commit_details_truncated" : false,
229
+ "committer_date" : "2020-08-12T12:18:56.000Z",
230
+ "body" : "[EDG-2878] Add helm setup",
231
+ "usage_queued_at" : "2020-08-12T12:18:59.949Z",
232
+ "context_ids" : [ ],
233
+ "fail_reason" : null,
234
+ "retry_of" : null,
235
+ "reponame" : "events-service",
236
+ "ssh_users" : [ ],
237
+ "build_url" : "https://circleci.com/gh/EdgePetrol/events-service/86",
238
+ "parallel" : 1,
239
+ "failed" : false,
240
+ "branch" : "staging",
241
+ "username" : "EdgePetrol",
242
+ "author_date" : "2020-08-12T12:18:56.000Z",
243
+ "why" : "github",
244
+ "user" : {
245
+ "is_user" : true,
246
+ "login" : "guiferrpereira",
247
+ "avatar_url" : "https://avatars1.githubusercontent.com/u/756762?v=4",
248
+ "name" : "Guilherme Pereira",
249
+ "vcs_type" : "github",
250
+ "id" : 756762
251
+ },
252
+ "vcs_revision" : "a19872d95a7edf499fe4d35b17050041851498ef",
253
+ "workflows" : {
254
+ "job_name" : "lint-dockerfile",
255
+ "job_id" : "78fcb3de-1070-4e57-837f-44c30cb08a70",
256
+ "workflow_id" : "5bdb0bd4-35e3-453a-9fb8-ff1b0ad38901",
257
+ "workspace_id" : "5bdb0bd4-35e3-453a-9fb8-ff1b0ad38901",
258
+ "upstream_job_ids" : [ ],
259
+ "upstream_concurrency_map" : { },
260
+ "workflow_name" : "release-helm-chart"
261
+ },
262
+ "vcs_tag" : null,
263
+ "build_num" : 86,
264
+ "infrastructure_fail" : false,
265
+ "committer_email" : "noreply@github.com",
266
+ "has_artifacts" : true,
267
+ "previous" : {
268
+ "build_num" : 85,
269
+ "status" : "success",
270
+ "build_time_millis" : 125571
271
+ },
272
+ "status" : "success",
273
+ "committer_name" : "GitHub",
274
+ "retries" : null,
275
+ "subject" : "Merge pull request #3 from EdgePetrol/feature/EDG-2878",
276
+ "vcs_type" : "github",
277
+ "timedout" : false,
278
+ "dont_build" : null,
279
+ "lifecycle" : "finished",
280
+ "no_dependency_cache" : false,
281
+ "stop_time" : "2020-08-12T12:19:20.930Z",
282
+ "ssh_disabled" : false,
283
+ "build_time_millis" : 18795,
284
+ "picard" : null,
285
+ "circle_yml" : null,
286
+ "messages" : [ ],
287
+ "is_first_green_build" : false,
288
+ "job_name" : null,
289
+ "start_time" : "2020-08-12T12:19:02.135Z",
290
+ "canceler" : null,
291
+ "all_commit_details" : [ {
292
+ "committer_date" : "2020-08-12T11:55:39.000Z",
293
+ "body" : "",
294
+ "branch" : "staging",
295
+ "author_date" : "2020-08-12T11:55:39.000Z",
296
+ "committer_email" : "guiferrpereira@gmail.com",
297
+ "commit" : "19e1b4db40c2184bfca1885fe8d14db78cf8f288",
298
+ "committer_login" : "guiferrpereira",
299
+ "committer_name" : "Guilherme Pereira",
300
+ "subject" : "[EDG-2878] Add helm setup",
301
+ "commit_url" : "https://github.com/EdgePetrol/events-service/commit/19e1b4db40c2184bfca1885fe8d14db78cf8f288",
302
+ "author_login" : "guiferrpereira",
303
+ "author_name" : "Guilherme Pereira",
304
+ "author_email" : "guiferrpereira@gmail.com"
305
+ }, {
306
+ "committer_date" : "2020-08-12T12:18:56.000Z",
307
+ "body" : "[EDG-2878] Add helm setup",
308
+ "branch" : "staging",
309
+ "author_date" : "2020-08-12T12:18:56.000Z",
310
+ "committer_email" : "noreply@github.com",
311
+ "commit" : "a19872d95a7edf499fe4d35b17050041851498ef",
312
+ "committer_login" : "web-flow",
313
+ "committer_name" : "GitHub",
314
+ "subject" : "Merge pull request #3 from EdgePetrol/feature/EDG-2878",
315
+ "commit_url" : "https://github.com/EdgePetrol/events-service/commit/a19872d95a7edf499fe4d35b17050041851498ef",
316
+ "author_login" : "guiferrpereira",
317
+ "author_name" : "Guilherme Pereira",
318
+ "author_email" : "guiferrpereira@gmail.com"
319
+ } ],
320
+ "platform" : "1.0",
321
+ "outcome" : "success",
322
+ "vcs_url" : "https://github.com/EdgePetrol/events-service",
323
+ "author_name" : "Guilherme Pereira",
324
+ "node" : null,
325
+ "queued_at" : "2020-08-12T12:18:59.978Z",
326
+ "canceled" : false,
327
+ "author_email" : "guiferrpereira@gmail.com"
328
+ }, {
329
+ "compare" : null,
330
+ "previous_successful_build" : null,
331
+ "build_parameters" : {
332
+ "CIRCLE_JOB" : "build"
333
+ },
334
+ "oss" : false,
335
+ "all_commit_details_truncated" : false,
336
+ "committer_date" : "2020-08-12T12:18:56.000Z",
337
+ "body" : "[EDG-2878] Add helm setup",
338
+ "usage_queued_at" : "2020-08-12T12:18:59.808Z",
339
+ "context_ids" : [ "EdgePetrolApp" ],
340
+ "fail_reason" : null,
341
+ "retry_of" : null,
342
+ "reponame" : "events-service",
343
+ "ssh_users" : [ ],
344
+ "build_url" : "https://circleci.com/gh/EdgePetrol/events-service/85",
345
+ "parallel" : 1,
346
+ "failed" : false,
347
+ "branch" : "staging",
348
+ "username" : "EdgePetrol",
349
+ "author_date" : "2020-08-12T12:18:56.000Z",
350
+ "why" : "github",
351
+ "user" : {
352
+ "is_user" : true,
353
+ "login" : "guiferrpereira",
354
+ "avatar_url" : "https://avatars1.githubusercontent.com/u/756762?v=4",
355
+ "name" : "Guilherme Pereira",
356
+ "vcs_type" : "github",
357
+ "id" : 756762
358
+ },
359
+ "vcs_revision" : "a19872d95a7edf499fe4d35b17050041851498ef",
360
+ "workflows" : {
361
+ "job_name" : "build",
362
+ "job_id" : "24e4658d-cc02-47a8-b553-9e26832a22dc",
363
+ "workflow_id" : "5bdb0bd4-35e3-453a-9fb8-ff1b0ad38901",
364
+ "workspace_id" : "5bdb0bd4-35e3-453a-9fb8-ff1b0ad38901",
365
+ "upstream_job_ids" : [ ],
366
+ "upstream_concurrency_map" : { },
367
+ "workflow_name" : "release-helm-chart"
368
+ },
369
+ "vcs_tag" : null,
370
+ "build_num" : 85,
371
+ "infrastructure_fail" : false,
372
+ "committer_email" : "noreply@github.com",
373
+ "has_artifacts" : true,
374
+ "previous" : {
375
+ "build_num" : 84,
376
+ "status" : "success",
377
+ "build_time_millis" : 25884
378
+ },
379
+ "status" : "success",
380
+ "committer_name" : "GitHub",
381
+ "retries" : null,
382
+ "subject" : "Merge pull request #3 from EdgePetrol/feature/EDG-2878",
383
+ "vcs_type" : "github",
384
+ "timedout" : false,
385
+ "dont_build" : null,
386
+ "lifecycle" : "finished",
387
+ "no_dependency_cache" : false,
388
+ "stop_time" : "2020-08-12T12:21:09.091Z",
389
+ "ssh_disabled" : false,
390
+ "build_time_millis" : 125571,
391
+ "picard" : null,
392
+ "circle_yml" : null,
393
+ "messages" : [ ],
394
+ "is_first_green_build" : false,
395
+ "job_name" : null,
396
+ "start_time" : "2020-08-12T12:19:03.520Z",
397
+ "canceler" : null,
398
+ "all_commit_details" : [ {
399
+ "committer_date" : "2020-08-12T11:55:39.000Z",
400
+ "body" : "",
401
+ "branch" : "staging",
402
+ "author_date" : "2020-08-12T11:55:39.000Z",
403
+ "committer_email" : "guiferrpereira@gmail.com",
404
+ "commit" : "19e1b4db40c2184bfca1885fe8d14db78cf8f288",
405
+ "committer_login" : "guiferrpereira",
406
+ "committer_name" : "Guilherme Pereira",
407
+ "subject" : "[EDG-2878] Add helm setup",
408
+ "commit_url" : "https://github.com/EdgePetrol/events-service/commit/19e1b4db40c2184bfca1885fe8d14db78cf8f288",
409
+ "author_login" : "guiferrpereira",
410
+ "author_name" : "Guilherme Pereira",
411
+ "author_email" : "guiferrpereira@gmail.com"
412
+ }, {
413
+ "committer_date" : "2020-08-12T12:18:56.000Z",
414
+ "body" : "[EDG-2878] Add helm setup",
415
+ "branch" : "staging",
416
+ "author_date" : "2020-08-12T12:18:56.000Z",
417
+ "committer_email" : "noreply@github.com",
418
+ "commit" : "a19872d95a7edf499fe4d35b17050041851498ef",
419
+ "committer_login" : "web-flow",
420
+ "committer_name" : "GitHub",
421
+ "subject" : "Merge pull request #3 from EdgePetrol/feature/EDG-2878",
422
+ "commit_url" : "https://github.com/EdgePetrol/events-service/commit/a19872d95a7edf499fe4d35b17050041851498ef",
423
+ "author_login" : "guiferrpereira",
424
+ "author_name" : "Guilherme Pereira",
425
+ "author_email" : "guiferrpereira@gmail.com"
426
+ } ],
427
+ "platform" : "1.0",
428
+ "outcome" : "success",
429
+ "vcs_url" : "https://github.com/EdgePetrol/events-service",
430
+ "author_name" : "Guilherme Pereira",
431
+ "node" : null,
432
+ "queued_at" : "2020-08-12T12:18:59.837Z",
433
+ "canceled" : false,
434
+ "author_email" : "guiferrpereira@gmail.com"
435
+ }, {
436
+ "compare" : null,
437
+ "previous_successful_build" : null,
438
+ "build_parameters" : {
439
+ "CIRCLE_JOB" : "build"
440
+ },
441
+ "oss" : false,
442
+ "all_commit_details_truncated" : false,
443
+ "committer_date" : null,
444
+ "body" : null,
445
+ "usage_queued_at" : "2020-08-12T12:09:10.936Z",
446
+ "context_ids" : [ "EdgePetrolApp" ],
447
+ "fail_reason" : null,
448
+ "retry_of" : null,
449
+ "reponame" : "events-service",
450
+ "ssh_users" : [ ],
451
+ "build_url" : "https://circleci.com/gh/EdgePetrol/events-service/84",
452
+ "parallel" : 1,
453
+ "failed" : false,
454
+ "branch" : "staging",
455
+ "username" : "EdgePetrol",
456
+ "author_date" : null,
457
+ "why" : "github",
458
+ "user" : {
459
+ "is_user" : true,
460
+ "login" : "guiferrpereira",
461
+ "avatar_url" : "https://avatars1.githubusercontent.com/u/756762?v=4",
462
+ "name" : "Guilherme Pereira",
463
+ "vcs_type" : "github",
464
+ "id" : 756762
465
+ },
466
+ "vcs_revision" : "51b36b1caba542dce438e87686ecef28db4b10bb",
467
+ "workflows" : {
468
+ "job_name" : "build",
469
+ "job_id" : "fbe506b4-64cf-41e8-910c-ce7f557ae581",
470
+ "workflow_id" : "821d118b-c8ec-440c-b235-ea680245263a",
471
+ "workspace_id" : "821d118b-c8ec-440c-b235-ea680245263a",
472
+ "upstream_job_ids" : [ ],
473
+ "upstream_concurrency_map" : { },
474
+ "workflow_name" : "test-workflow"
475
+ },
476
+ "vcs_tag" : null,
477
+ "build_num" : 84,
478
+ "infrastructure_fail" : false,
479
+ "committer_email" : null,
480
+ "has_artifacts" : true,
481
+ "previous" : {
482
+ "build_num" : 83,
483
+ "status" : "success",
484
+ "build_time_millis" : 17264
485
+ },
486
+ "status" : "success",
487
+ "committer_name" : null,
488
+ "retries" : null,
489
+ "subject" : null,
490
+ "vcs_type" : "github",
491
+ "timedout" : false,
492
+ "dont_build" : null,
493
+ "lifecycle" : "finished",
494
+ "no_dependency_cache" : false,
495
+ "stop_time" : "2020-08-12T12:09:41.160Z",
496
+ "ssh_disabled" : false,
497
+ "build_time_millis" : 25884,
498
+ "picard" : null,
499
+ "circle_yml" : null,
500
+ "messages" : [ ],
501
+ "is_first_green_build" : false,
502
+ "job_name" : null,
503
+ "start_time" : "2020-08-12T12:09:15.276Z",
504
+ "canceler" : null,
505
+ "all_commit_details" : [ ],
506
+ "platform" : "1.0",
507
+ "outcome" : "success",
508
+ "vcs_url" : "https://github.com/EdgePetrol/events-service",
509
+ "author_name" : null,
510
+ "node" : null,
511
+ "queued_at" : "2020-08-12T12:09:10.980Z",
512
+ "canceled" : false,
513
+ "author_email" : null
514
+ }, {
515
+ "compare" : null,
516
+ "previous_successful_build" : null,
517
+ "build_parameters" : {
518
+ "CIRCLE_JOB" : "install-helm-chart-3"
519
+ },
520
+ "oss" : false,
521
+ "all_commit_details_truncated" : false,
522
+ "committer_date" : "2020-08-12T11:55:39.000Z",
523
+ "body" : "",
524
+ "usage_queued_at" : "2020-08-12T12:05:01.272Z",
525
+ "context_ids" : [ "EdgePetrol-EKS-AWS-Staging" ],
526
+ "fail_reason" : null,
527
+ "retry_of" : null,
528
+ "reponame" : "events-service",
529
+ "ssh_users" : [ ],
530
+ "build_url" : "https://circleci.com/gh/EdgePetrol/events-service/83",
531
+ "parallel" : 1,
532
+ "failed" : false,
533
+ "branch" : "staging",
534
+ "username" : "EdgePetrol",
535
+ "author_date" : "2020-08-12T11:55:39.000Z",
536
+ "why" : "github",
537
+ "user" : {
538
+ "is_user" : true,
539
+ "login" : "guiferrpereira",
540
+ "avatar_url" : "https://avatars1.githubusercontent.com/u/756762?v=4",
541
+ "name" : "Guilherme Pereira",
542
+ "vcs_type" : "github",
543
+ "id" : 756762
544
+ },
545
+ "vcs_revision" : "19e1b4db40c2184bfca1885fe8d14db78cf8f288",
546
+ "workflows" : {
547
+ "job_name" : "install-helm-chart-3",
548
+ "job_id" : "01226a08-9270-42ac-955e-2081295af5ac",
549
+ "workflow_id" : "5353657b-1d67-45a3-a86a-be3e5cbe8df2",
550
+ "workspace_id" : "5353657b-1d67-45a3-a86a-be3e5cbe8df2",
551
+ "upstream_job_ids" : [ "22525fe6-4c04-48e1-be0a-74eb3c68048b", "cf149665-745c-4fe0-ba66-d080acb27fdd", "3bb16871-56de-455a-bb83-91efea258ddf" ],
552
+ "upstream_concurrency_map" : {
553
+ "cf149665_745c_4fe0_ba66_d080acb27fdd" : [ "22525fe6-4c04-48e1-be0a-74eb3c68048b" ],
554
+ "22525fe6_4c04_48e1_be0a_74eb3c68048b" : [ "cf149665-745c-4fe0-ba66-d080acb27fdd" ]
555
+ },
556
+ "workflow_name" : "release-helm-chart"
557
+ },
558
+ "vcs_tag" : null,
559
+ "build_num" : 83,
560
+ "infrastructure_fail" : false,
561
+ "committer_email" : "guiferrpereira@gmail.com",
562
+ "has_artifacts" : true,
563
+ "previous" : {
564
+ "build_num" : 82,
565
+ "status" : "success",
566
+ "build_time_millis" : 233394
567
+ },
568
+ "status" : "success",
569
+ "committer_name" : "Guilherme Pereira",
570
+ "retries" : null,
571
+ "subject" : "[EDG-2878] Add helm setup",
572
+ "vcs_type" : "github",
573
+ "timedout" : false,
574
+ "dont_build" : null,
575
+ "lifecycle" : "finished",
576
+ "no_dependency_cache" : false,
577
+ "stop_time" : "2020-08-12T12:05:23.756Z",
578
+ "ssh_disabled" : false,
579
+ "build_time_millis" : 17264,
580
+ "picard" : null,
581
+ "circle_yml" : null,
582
+ "messages" : [ ],
583
+ "is_first_green_build" : false,
584
+ "job_name" : null,
585
+ "start_time" : "2020-08-12T12:05:06.492Z",
586
+ "canceler" : null,
587
+ "all_commit_details" : [ {
588
+ "committer_date" : "2020-08-11T08:24:43.000Z",
589
+ "body" : "",
590
+ "branch" : "staging",
591
+ "author_date" : "2020-08-11T08:24:43.000Z",
592
+ "committer_email" : "guiferrpereira@gmail.com",
593
+ "commit" : "49572ac813baa84ea3684d9e5533b9b80dec8d94",
594
+ "committer_login" : "guiferrpereira",
595
+ "committer_name" : "Guilherme Pereira",
596
+ "subject" : "[EDG-2760] Add sidekiq deployment file",
597
+ "commit_url" : "https://github.com/EdgePetrol/events-service/commit/49572ac813baa84ea3684d9e5533b9b80dec8d94",
598
+ "author_login" : "guiferrpereira",
599
+ "author_name" : "Guilherme Pereira",
600
+ "author_email" : "guiferrpereira@gmail.com"
601
+ }, {
602
+ "committer_date" : "2020-08-11T08:39:05.000Z",
603
+ "body" : "[EDG-2760] Add sidekiq deployment file",
604
+ "branch" : "staging",
605
+ "author_date" : "2020-08-11T08:39:05.000Z",
606
+ "committer_email" : "noreply@github.com",
607
+ "commit" : "89af2d840914dcfd3e2409df80fb788a1d65e95a",
608
+ "committer_login" : "web-flow",
609
+ "committer_name" : "GitHub",
610
+ "subject" : "Merge pull request #1 from EdgePetrol/feature/EDG-2760",
611
+ "commit_url" : "https://github.com/EdgePetrol/events-service/commit/89af2d840914dcfd3e2409df80fb788a1d65e95a",
612
+ "author_login" : "guiferrpereira",
613
+ "author_name" : "Guilherme Pereira",
614
+ "author_email" : "guiferrpereira@gmail.com"
615
+ }, {
616
+ "committer_date" : "2020-08-11T08:49:58.000Z",
617
+ "body" : "",
618
+ "branch" : "staging",
619
+ "author_date" : "2020-08-11T08:49:58.000Z",
620
+ "committer_email" : "guiferrpereira@gmail.com",
621
+ "commit" : "916c8368183bd79eb61e3e62d0bbd3b8d126f3b6",
622
+ "committer_login" : "guiferrpereira",
623
+ "committer_name" : "Guilherme Pereira",
624
+ "subject" : "[EDG-2872] Fixup sidekiq setup",
625
+ "commit_url" : "https://github.com/EdgePetrol/events-service/commit/916c8368183bd79eb61e3e62d0bbd3b8d126f3b6",
626
+ "author_login" : "guiferrpereira",
627
+ "author_name" : "Guilherme Pereira",
628
+ "author_email" : "guiferrpereira@gmail.com"
629
+ }, {
630
+ "committer_date" : "2020-08-11T10:41:59.000Z",
631
+ "body" : "[EDG-2872] Fixup sidekiq setup",
632
+ "branch" : "staging",
633
+ "author_date" : "2020-08-11T10:41:59.000Z",
634
+ "committer_email" : "noreply@github.com",
635
+ "commit" : "51b36b1caba542dce438e87686ecef28db4b10bb",
636
+ "committer_login" : "web-flow",
637
+ "committer_name" : "GitHub",
638
+ "subject" : "Merge pull request #2 from EdgePetrol/feature/EDG-2872",
639
+ "commit_url" : "https://github.com/EdgePetrol/events-service/commit/51b36b1caba542dce438e87686ecef28db4b10bb",
640
+ "author_login" : "guiferrpereira",
641
+ "author_name" : "Guilherme Pereira",
642
+ "author_email" : "guiferrpereira@gmail.com"
643
+ }, {
644
+ "committer_date" : "2020-08-12T11:55:39.000Z",
645
+ "body" : "",
646
+ "branch" : "staging",
647
+ "author_date" : "2020-08-12T11:55:39.000Z",
648
+ "committer_email" : "guiferrpereira@gmail.com",
649
+ "commit" : "19e1b4db40c2184bfca1885fe8d14db78cf8f288",
650
+ "committer_login" : "guiferrpereira",
651
+ "committer_name" : "Guilherme Pereira",
652
+ "subject" : "[EDG-2878] Add helm setup",
653
+ "commit_url" : "https://github.com/EdgePetrol/events-service/commit/19e1b4db40c2184bfca1885fe8d14db78cf8f288",
654
+ "author_login" : "guiferrpereira",
655
+ "author_name" : "Guilherme Pereira",
656
+ "author_email" : "guiferrpereira@gmail.com"
657
+ } ],
658
+ "platform" : "1.0",
659
+ "outcome" : "success",
660
+ "vcs_url" : "https://github.com/EdgePetrol/events-service",
661
+ "author_name" : "Guilherme Pereira",
662
+ "node" : null,
663
+ "queued_at" : "2020-08-12T12:05:01.304Z",
664
+ "canceled" : false,
665
+ "author_email" : "guiferrpereira@gmail.com"
666
+ } ]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: circle_ci_wrapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guilherme Pereira
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-19 00:00:00.000000000 Z
11
+ date: 2020-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -129,12 +129,25 @@ executables: []
129
129
  extensions: []
130
130
  extra_rdoc_files: []
131
131
  files:
132
+ - ".circleci/config.yml"
133
+ - ".gem_release.yml"
134
+ - ".rubocop.yml"
135
+ - Gemfile
136
+ - Gemfile.lock
137
+ - README.md
138
+ - circle_ci.gemspec
132
139
  - lib/circle_ci_wrapper.rb
140
+ - lib/circle_ci_wrapper/version.rb
141
+ - spec/lib/circle_ci_wrapper_spec.rb
142
+ - spec/spec_helper.rb
143
+ - spec/support/fixtures/current_circle_ci.json
144
+ - spec/support/fixtures/master_circle_ci.json
145
+ - spec/support/fixtures/tree_ci.json
133
146
  homepage: https://github.com/EdgePetrol/circle_ci
134
147
  licenses:
135
148
  - MIT
136
149
  metadata: {}
137
- post_install_message:
150
+ post_install_message:
138
151
  rdoc_options: []
139
152
  require_paths:
140
153
  - lib
@@ -150,7 +163,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
150
163
  version: '0'
151
164
  requirements: []
152
165
  rubygems_version: 3.1.2
153
- signing_key:
166
+ signing_key:
154
167
  specification_version: 4
155
168
  summary: CircleCI API wrapper to help find build artifacts
156
- test_files: []
169
+ test_files:
170
+ - spec/lib/circle_ci_wrapper_spec.rb
171
+ - spec/spec_helper.rb
172
+ - spec/support/fixtures/current_circle_ci.json
173
+ - spec/support/fixtures/master_circle_ci.json
174
+ - spec/support/fixtures/tree_ci.json