chelsea 0.0.20 → 0.0.21

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: 64783b583be55563a644a1c8eec06c6b07265bb88db9b171caa01a1329c359b9
4
- data.tar.gz: 20adbf427970a872053481b3420fddb7b13fb338e2ba2b683f26258d52eaa6a4
3
+ metadata.gz: 415664e5de85d5b47e49f0d1aa3978fbc894811fafdd4ab2a98e0914b4c8e7be
4
+ data.tar.gz: e1388ba90a0381cf0c4a1fc607eb55b252c9f5dcc787c60f877d66d7046dbcfa
5
5
  SHA512:
6
- metadata.gz: d457980c0f7462d7db67847dfecb744e35e7376fd5776af50fb57aa28f4af32adaf215ff5be7ba99af75f17586641d4a2f39415899c114b88318fe7bf57ba8c4
7
- data.tar.gz: 7867281a4549324ae3093f177f6caf473132bd272af8d323dc93ad88df35462fa93bb4bf3a090e1772bf078b3b50b43ad69453235ad451ed4075f8e60e81fa48
6
+ metadata.gz: 24a54d666927058fe393cc75a10c57063908588c7c00b8756d6fdfe80958a90c354cf931668b9b77c72d843e5ce7728cce8519ceaa780165b031f9d3635c5edc
7
+ data.tar.gz: eb228ea072f529add63232a5f8544e802353020f6a80c60f9bc9323da42efeda0a0894cecde443069f343f8bec0bd33682d1f84e336630614cb2bd934af51d4a
@@ -0,0 +1,28 @@
1
+ CI Debug Notes
2
+ ================
3
+ To validate some circleci stuff, I was able to run a “build locally” using the steps below.
4
+ The local build runs in a docker container.
5
+
6
+ * (Once) Install circleci client (`brew install circleci`)
7
+
8
+ * Convert the “real” config.yml into a self contained (non-workspace) config via:
9
+
10
+ circleci config process .circleci/config.yml > .circleci/local-config.yml
11
+
12
+ * Run a local build with the following command:
13
+
14
+ circleci local execute -c .circleci/local-config.yml --job 'build'
15
+
16
+ Typically both commands are run together:
17
+
18
+ circleci config process .circleci/config.yml > .circleci/local-config.yml && circleci local execute -c .circleci/local-config.yml --job 'build'
19
+
20
+ With the above command, operations that cannot occur during a local build will show an error like this:
21
+
22
+ ```
23
+ ... Error: FAILED with error not supported
24
+ ```
25
+
26
+ However, the build will proceed and can complete “successfully”, which allows you to verify scripts in your config, etc.
27
+
28
+ If the build does complete successfully, you should see a happy yellow `Success!` message.
data/.gitignore CHANGED
@@ -12,3 +12,6 @@
12
12
  .rspec_status
13
13
  .byebug_history
14
14
  .ruby-version
15
+
16
+ # ci config for local ci build
17
+ .circleci/local-config.yml
@@ -15,5 +15,5 @@
15
15
  #
16
16
 
17
17
  module Chelsea
18
- VERSION = '0.0.20'.freeze
18
+ VERSION = '0.0.21'.freeze
19
19
  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.20
4
+ version: 0.0.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Allister Beharry
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-11 00:00:00.000000000 Z
11
+ date: 2020-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tty-font
@@ -222,6 +222,7 @@ executables:
222
222
  extensions: []
223
223
  extra_rdoc_files: []
224
224
  files:
225
+ - ".circleci/circleci-readme.md"
225
226
  - ".circleci/config.yml"
226
227
  - ".circleci/setup-rubygems.sh"
227
228
  - ".github/CONTRIBUTING.md"