chelsea 0.0.36 → 0.0.38

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: '097c89b044fffda53ddf8e3e0d9905cffc3b8fa4d17b1155c93bb428a83ea2ed'
4
- data.tar.gz: a934ba7e74f6f56eb659acbe1c6161da8390221e4d5bedf6f845472d302ce51d
3
+ metadata.gz: cbd9791c6d84eba929f5cd585061ce7183df3dcdb35c93ceb7561e38d04a11a4
4
+ data.tar.gz: 6ca291f6c9e3383b0b584def428033daa03593bd55a7b44e1ea9d51b3d324061
5
5
  SHA512:
6
- metadata.gz: e131c5dd93c832c703bf4e82a3e9c055e7758fea0c639d216620ddb01c5d0eff7f0eddb4ad52de729efc049fedc2683094ebaca83dfadb643ac3d55a93dd93f8
7
- data.tar.gz: e54cb1671bd171c895d227407fb7bd23db2de9dbadb68411f99c6f736543ac15ba45bb3c06c610d790ff655279111bc52d7d4d7c18c0e64c2d71aa970ebac5ce
6
+ metadata.gz: 6bee2eb97baade4530411d801021143494f7d57ccc994c36dc6fb071ed699b479d9d4ae1fa1a082dd3a23d5bf4cb11ccb9383447765e2ccb46332c8eda3eab24
7
+ data.tar.gz: 196f5347f05ab3e6cf235d034991df35c53004a0c6554c595799eb7588dff8082eeefd0fde9d3265cccc2932d0adae1dfad4f9abaea5017b63c67577f3da69b2
data/.circleci/config.yml CHANGED
@@ -15,17 +15,23 @@
15
15
  #
16
16
 
17
17
  version: 2.1
18
- jobs:
19
- build:
20
- docker:
18
+
19
+ executors:
20
+ ruby_executor:
21
+ docker:
21
22
  - image: circleci/ruby:2.6.6-stretch
22
- environment:
23
- BUNDLE_PATH: vendor/bundle
23
+ # - image: cimg/ruby:3.2
24
+
25
+ jobs:
26
+ build:
27
+ executor: ruby_executor
28
+ environment:
29
+ BUNDLE_PATH: vendor/bundle
24
30
  steps:
25
31
  - checkout
26
32
  - run:
27
33
  name: Install bundler
28
- command: gem install bundler
34
+ command: gem install bundler -v 2.4.22
29
35
  - run:
30
36
  name: Which bundler?
31
37
  command: bundle -v
@@ -54,6 +60,9 @@ jobs:
54
60
  - run:
55
61
  name: Build gem
56
62
  command: gem build chelsea.gemspec
63
+ - run:
64
+ name: Install gem domain_name (required due to older ruby)
65
+ command: gem install domain_name -v 0.5.20190701
57
66
  - run:
58
67
  name: Install gem
59
68
  command: gem install ./chelsea-*.gem
@@ -66,8 +75,7 @@ jobs:
66
75
  - store_test_results:
67
76
  path: test_results
68
77
  release:
69
- docker:
70
- - image: circleci/ruby:2.6.6-stretch
78
+ executor: ruby_executor
71
79
  steps:
72
80
  - add_ssh_keys:
73
81
  fingerprints:
data/Dockerfile CHANGED
@@ -32,7 +32,7 @@ RUN chown -R jenkins:100 /home/jenkins
32
32
 
33
33
  USER jenkins
34
34
 
35
- RUN gem install bundler
35
+ RUN gem install bundler -v 2.4.22
36
36
 
37
37
  RUN bundle install
38
38
 
data/Jenkinsfile CHANGED
@@ -17,9 +17,6 @@
17
17
  @Library(['private-pipeline-library', 'jenkins-shared']) _
18
18
 
19
19
  dockerizedBuildPipeline(
20
- prepare: {
21
- githubStatusUpdate('pending')
22
- },
23
20
  buildAndTest: {
24
21
  sh '''
25
22
  bundle exec rspec --format progress --format RspecJunitFormatter --out test_results/rspec.xml
@@ -38,11 +35,7 @@ dockerizedBuildPipeline(
38
35
  })
39
36
  },
40
37
  testResults: [ 'test_results/rspec.xml' ],
41
- onSuccess: {
42
- githubStatusUpdate('success')
43
- },
44
38
  onFailure: {
45
- githubStatusUpdate('failure')
46
39
  notifyChat(currentBuild: currentBuild, env: env, room: 'community-oss-fun')
47
40
  sendEmailNotification(currentBuild, env, [], 'community-group@sonatype.com')
48
41
  }
@@ -17,5 +17,5 @@
17
17
  #
18
18
 
19
19
  module Chelsea
20
- VERSION = '0.0.36'
20
+ VERSION = '0.0.38'
21
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chelsea
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.36
4
+ version: 0.0.38
5
5
  platform: ruby
6
6
  authors:
7
7
  - Allister Beharry
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-16 00:00:00.000000000 Z
11
+ date: 2024-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler