rake_circle_ci 0.2.0.pre.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.circleci/config.yml +56 -0
- data/.circleci/gpg.private.enc +0 -0
- data/.envrc +5 -0
- data/.git-crypt/.gitattributes +4 -0
- data/.git-crypt/keys/default/0/41D2606F66C3FF28874362B61A16916844CE9D82.gpg +0 -0
- data/.git-crypt/keys/default/0/AAE932B730C2BA697FFDFAE05DA390873E38358B.gpg +0 -0
- data/.gitattributes +1 -0
- data/.gitignore +33 -0
- data/.rspec +2 -0
- data/.ruby-version +1 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +68 -0
- data/LICENSE.txt +21 -0
- data/README.md +71 -0
- data/Rakefile +24 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/config/secrets/.unlocked +1 -0
- data/config/secrets/ci/encryption.passphrase +1 -0
- data/config/secrets/ci/gpg.private +58 -0
- data/config/secrets/ci/gpg.public +31 -0
- data/config/secrets/ci/ssh.private +51 -0
- data/config/secrets/ci/ssh.public +1 -0
- data/config/secrets/rubygems/credentials +2 -0
- data/go +56 -0
- data/lib/rake_circle_ci.rb +5 -0
- data/lib/rake_circle_ci/version.rb +3 -0
- data/rake_circle_ci.gemspec +38 -0
- data/scripts/ci/common/configure-git.sh +8 -0
- data/scripts/ci/common/configure-rubygems.sh +16 -0
- data/scripts/ci/common/install-git-crypt.sh +8 -0
- data/scripts/ci/common/install-gpg-key.sh +19 -0
- data/scripts/ci/steps/prerelease.sh +16 -0
- data/scripts/ci/steps/release.sh +18 -0
- data/scripts/ci/steps/test.sh +12 -0
- metadata +233 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 5a34b2d8b71d4a51032baa2b227165cee58e2fc8f31a4379bf7abbc9010e9aa2
|
4
|
+
data.tar.gz: 25111f79d2b5ea73b821ad567cbcbc46ffbc3cd87ada411095136612ff6b3499
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e03c619ed36c8f2929348d23f3da615b49f73a5d1e60da798ad229061bdec19890575083008845ca7f92e6eb35365729a665c408addaec240153222e0b9abccf
|
7
|
+
data.tar.gz: 0edeb99e83aec7cdbe5acfe05ee902a4357ce09c95b6f620fdec2d961f968abf69ed816627510ac341040ac0a763ec1b289329d840e14a3941230925cb34ba2a
|
@@ -0,0 +1,56 @@
|
|
1
|
+
version: 2.1
|
2
|
+
jobs:
|
3
|
+
test:
|
4
|
+
working_directory: ~/rake-circle-ci
|
5
|
+
docker:
|
6
|
+
- image: ruby:2.6.0
|
7
|
+
steps:
|
8
|
+
- checkout
|
9
|
+
- run: ./scripts/ci/steps/test.sh
|
10
|
+
prerelease:
|
11
|
+
working_directory: ~/rake-circle-ci
|
12
|
+
docker:
|
13
|
+
- image: ruby:2.6.0
|
14
|
+
steps:
|
15
|
+
- checkout
|
16
|
+
- run: ./scripts/ci/common/install-git-crypt.sh
|
17
|
+
- run: ./scripts/ci/common/install-gpg-key.sh
|
18
|
+
- run: ./scripts/ci/common/configure-git.sh
|
19
|
+
- run: ./scripts/ci/common/configure-rubygems.sh
|
20
|
+
- run: ./scripts/ci/steps/prerelease.sh
|
21
|
+
release:
|
22
|
+
working_directory: ~/rake-circle-ci
|
23
|
+
docker:
|
24
|
+
- image: ruby:2.6.0
|
25
|
+
steps:
|
26
|
+
- checkout
|
27
|
+
- run: ./scripts/ci/common/install-git-crypt.sh
|
28
|
+
- run: ./scripts/ci/common/install-gpg-key.sh
|
29
|
+
- run: ./scripts/ci/common/configure-git.sh
|
30
|
+
- run: ./scripts/ci/common/configure-rubygems.sh
|
31
|
+
- run: ./scripts/ci/steps/release.sh
|
32
|
+
|
33
|
+
workflows:
|
34
|
+
version: 2
|
35
|
+
pipeline:
|
36
|
+
jobs:
|
37
|
+
- test
|
38
|
+
- prerelease:
|
39
|
+
requires:
|
40
|
+
- test
|
41
|
+
filters:
|
42
|
+
branches:
|
43
|
+
only: master
|
44
|
+
- hold:
|
45
|
+
type: approval
|
46
|
+
requires:
|
47
|
+
- prerelease
|
48
|
+
filters:
|
49
|
+
branches:
|
50
|
+
only: master
|
51
|
+
- release:
|
52
|
+
requires:
|
53
|
+
- hold
|
54
|
+
filters:
|
55
|
+
branches:
|
56
|
+
only: master
|
Binary file
|
data/.envrc
ADDED
data/.gitattributes
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
config/secrets/** filter=git-crypt diff=git-crypt
|
data/.gitignore
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
## Standard stuff:
|
2
|
+
*.gem
|
3
|
+
*.rbc
|
4
|
+
/build
|
5
|
+
/.config
|
6
|
+
/coverage/
|
7
|
+
/InstalledFiles
|
8
|
+
/pkg/
|
9
|
+
.rspec_status
|
10
|
+
/spec/reports/
|
11
|
+
/spec/examples.txt
|
12
|
+
/test/tmp/
|
13
|
+
/test/version_tmp/
|
14
|
+
/tmp/
|
15
|
+
.rakeTasks
|
16
|
+
|
17
|
+
## Documentation cache and generated files:
|
18
|
+
/.yardoc/
|
19
|
+
/_yardoc/
|
20
|
+
/doc/
|
21
|
+
/rdoc/
|
22
|
+
/coverage/
|
23
|
+
|
24
|
+
## Environment normalization:
|
25
|
+
/.bundle/
|
26
|
+
/vendor/bundle
|
27
|
+
/lib/bundler/man/
|
28
|
+
|
29
|
+
## IDE:
|
30
|
+
.idea
|
31
|
+
*.ipr
|
32
|
+
*.iws
|
33
|
+
*.iml
|
data/.rspec
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.6.0
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at tobyclemson@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
rake_circle_ci (0.2.0.pre.1)
|
5
|
+
colored2 (~> 3.1)
|
6
|
+
excon (~> 0.72)
|
7
|
+
rake_factory (~> 0.23)
|
8
|
+
sshkey (~> 2.0)
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
13
|
+
activesupport (5.2.4.1)
|
14
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
15
|
+
i18n (>= 0.7, < 2)
|
16
|
+
minitest (~> 5.1)
|
17
|
+
tzinfo (~> 1.1)
|
18
|
+
colored2 (3.1.2)
|
19
|
+
concurrent-ruby (1.1.6)
|
20
|
+
diff-lcs (1.3)
|
21
|
+
docile (1.3.2)
|
22
|
+
excon (0.72.0)
|
23
|
+
gem-release (2.1.1)
|
24
|
+
i18n (1.8.2)
|
25
|
+
concurrent-ruby (~> 1.0)
|
26
|
+
memfs (1.0.0)
|
27
|
+
minitest (5.14.0)
|
28
|
+
rake (13.0.1)
|
29
|
+
rake_factory (0.25.0)
|
30
|
+
activesupport (>= 4)
|
31
|
+
rake (~> 13.0)
|
32
|
+
rspec (3.9.0)
|
33
|
+
rspec-core (~> 3.9.0)
|
34
|
+
rspec-expectations (~> 3.9.0)
|
35
|
+
rspec-mocks (~> 3.9.0)
|
36
|
+
rspec-core (3.9.1)
|
37
|
+
rspec-support (~> 3.9.1)
|
38
|
+
rspec-expectations (3.9.0)
|
39
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
40
|
+
rspec-support (~> 3.9.0)
|
41
|
+
rspec-mocks (3.9.1)
|
42
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
43
|
+
rspec-support (~> 3.9.0)
|
44
|
+
rspec-support (3.9.2)
|
45
|
+
simplecov (0.18.5)
|
46
|
+
docile (~> 1.1)
|
47
|
+
simplecov-html (~> 0.11)
|
48
|
+
simplecov-html (0.12.2)
|
49
|
+
sshkey (2.0.0)
|
50
|
+
thread_safe (0.3.6)
|
51
|
+
tzinfo (1.2.6)
|
52
|
+
thread_safe (~> 0.1)
|
53
|
+
|
54
|
+
PLATFORMS
|
55
|
+
ruby
|
56
|
+
|
57
|
+
DEPENDENCIES
|
58
|
+
activesupport (~> 5.2)
|
59
|
+
bundler (~> 2.0)
|
60
|
+
gem-release (~> 2.0)
|
61
|
+
memfs (~> 1.0)
|
62
|
+
rake (~> 13.0)
|
63
|
+
rake_circle_ci!
|
64
|
+
rspec (~> 3.9)
|
65
|
+
simplecov (~> 0.16)
|
66
|
+
|
67
|
+
BUNDLED WITH
|
68
|
+
2.1.4
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 InfraBlocks Maintainers
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
# RakeCircleCI
|
2
|
+
|
3
|
+
Rake tasks for CircleCI projects.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'rake_circle_ci'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install rake_circle_ci
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
TODO: Write usage instructions here
|
24
|
+
|
25
|
+
## Development
|
26
|
+
|
27
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
28
|
+
`rake spec` to run the tests. You can also run `bin/console` for an interactive
|
29
|
+
prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To
|
32
|
+
release a new version, update the version number in `version.rb`, and then run
|
33
|
+
`bundle exec rake release`, which will create a git tag for the version, push
|
34
|
+
git commits and tags, and push the `.gem` file to
|
35
|
+
[rubygems.org](https://rubygems.org).
|
36
|
+
|
37
|
+
### Managing CircleCI keys
|
38
|
+
|
39
|
+
To encrypt a GPG key for use by CircleCI:
|
40
|
+
|
41
|
+
```bash
|
42
|
+
openssl aes-256-cbc \
|
43
|
+
-e \
|
44
|
+
-md sha1 \
|
45
|
+
-in ./config/secrets/ci/gpg.private \
|
46
|
+
-out ./.circleci/gpg.private.enc \
|
47
|
+
-k "<passphrase>"
|
48
|
+
```
|
49
|
+
|
50
|
+
To check decryption is working correctly:
|
51
|
+
|
52
|
+
```bash
|
53
|
+
openssl aes-256-cbc \
|
54
|
+
-d \
|
55
|
+
-md sha1 \
|
56
|
+
-in ./.circleci/gpg.private.enc \
|
57
|
+
-k "<passphrase>"
|
58
|
+
```
|
59
|
+
|
60
|
+
## Contributing
|
61
|
+
|
62
|
+
Bug reports and pull requests are welcome on GitHub at
|
63
|
+
https://github.com/infrablocks/rake_circle_ci. This project is intended to be a
|
64
|
+
safe, welcoming space for collaboration, and contributors are expected to
|
65
|
+
adhere to the [Contributor Covenant](http://contributor-covenant.org) code of
|
66
|
+
conduct.
|
67
|
+
|
68
|
+
## License
|
69
|
+
|
70
|
+
The gem is available as open source under the terms of the
|
71
|
+
[MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
require "rspec/core/rake_task"
|
2
|
+
|
3
|
+
RSpec::Core::RakeTask.new(:spec)
|
4
|
+
|
5
|
+
task :default => :spec
|
6
|
+
|
7
|
+
namespace :version do
|
8
|
+
desc "Bump version for specified type (pre, major, minor patch)"
|
9
|
+
task :bump, [:type] do |_, args|
|
10
|
+
bump_version_for(args.type)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
desc "Release gem"
|
15
|
+
task :release do
|
16
|
+
sh "gem release --tag --push"
|
17
|
+
end
|
18
|
+
|
19
|
+
def bump_version_for(version_type)
|
20
|
+
sh "gem bump --version #{version_type} " +
|
21
|
+
"&& bundle install " +
|
22
|
+
"&& export LAST_MESSAGE=\"$(git log -1 --pretty=%B)\" " +
|
23
|
+
"&& git commit -a --amend -m \"${LAST_MESSAGE} [ci skip]\""
|
24
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "rake_circle_ci"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
true
|
@@ -0,0 +1 @@
|
|
1
|
+
fmFsBRd0haxdPyYDNZkgDHojaZ3MgWg5DFZKrzJtQCVdehpX
|
@@ -0,0 +1,58 @@
|
|
1
|
+
-----BEGIN PGP PRIVATE KEY BLOCK-----
|
2
|
+
|
3
|
+
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
|
56
|
+
3zYh8+8wYJ4+vrkTFspeu2s=
|
57
|
+
=bs3g
|
58
|
+
-----END PGP PRIVATE KEY BLOCK-----
|
@@ -0,0 +1,31 @@
|
|
1
|
+
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
2
|
+
|
3
|
+
mQENBF5iajgBCADpMbSEz+Fl4HgUxXQLTuIi01QMf/dkwVDuwNrPdVtkKKi27RS5
|
4
|
+
OOiJYYzHkSqJwdbrMf1R/Uj1S4D4zP9BPc9VmKm1tPRnk4rrhpJPE9jR9X/6RTw3
|
5
|
+
ilIqelK84WfR74yAbaQYtEF3YEOhWSCvwsf3jQuE8LBMGh+Zf8DlYeH5wBvIIF5x
|
6
|
+
y0GDktvq5+dr/szqi8rMCz3MdiouUDbyWmMKwjmegSLzS/kf8dgiEg7iChVYNSAT
|
7
|
+
SBqxRZCWADiO61vzTO8YlZj4ke+S7Lkg/d4lafVJ3Bsw89K7F79+mIZaBU1oon8v
|
8
|
+
y+AM7QAK6kGgb50vsS9QYRtYqZzK0DsaLNhVABEBAAG0M09wZW4gU291cmNlIENJ
|
9
|
+
IDx0b2J5Y2xlbXNvbitvcGVuc291cmNlY2lAZ21haWwuY29tPokBVAQTAQgAPhYh
|
10
|
+
BKrpMrcwwrppf/364F2jkIc+ODWLBQJeYmo4AhsDBQkDwmcABQsJCAcCBhUKCQgL
|
11
|
+
AgQWAgMBAh4BAheAAAoJEF2jkIc+ODWLqhUIAMSJ9l+acSPSnW0MDhjFn46cFUSC
|
12
|
+
b7YF77wBBrMj6LhQnvad5ii+ik+fld2iK0ZGg33j9b6xY7XzoLUsa/HISdLdF6xg
|
13
|
+
sMJZMhDfBRaCDDH98cbvUkR1rdimSxNMWnEd+q7BApgSItVfnuMcZDpAPY+Qnoqj
|
14
|
+
WTlM1GVK0cjD7Fb3QiAOomBsD+O3zBqBpGBZ8bnkaxu7WfQMSV0QBBoyV5pNkYPs
|
15
|
+
pHWJgIm1axwYX9383ftDDtVzAQ6YcO8x+NntEIbV7RFwyCD+AlglDfUMe4ZYxniI
|
16
|
+
jYhAWrGNVMrLsyfkSYDd9keUQGXgrWupgrH1oEPUv0RkM43KV82wqoxJJaG5AQ0E
|
17
|
+
XmJqOAEIALXw6hlF/PWRPIWIO6tJS6u5g8ndnwlmNLbhgUj0D7OjXS1mzjFIeKvm
|
18
|
+
jFBb/6klmrow8WilnbjzgNWzHsSgkQGrn5WgiC+jDhwAv2UB6afs4MySM+gD1EZc
|
19
|
+
8AAIE/asONMql/GVhPMRr4vbd7D7UdEA8YCVUc7qPRFITBPS/x2/E4lAzY/q5KZ9
|
20
|
+
uFI89Xrw02A7/Z4j+pWgOpUu/yExSu8pvFJ65aJ5t2nw48MdnYoykKKeZ/0FEzXj
|
21
|
+
s/MbJGDwVcM699TGodqMw40Kl7jIqIje7HvW18pRKgbwuzFJTA0gfAl6qWWbhaGB
|
22
|
+
m5E1zr/vTBh+vt4dLOtXD+5rG0blNlMAEQEAAYkBPAQYAQgAJhYhBKrpMrcwwrpp
|
23
|
+
f/364F2jkIc+ODWLBQJeYmo4AhsMBQkDwmcAAAoJEF2jkIc+ODWLedoIAKOh0rzN
|
24
|
+
ykH7uHPxqFLele2y0mv2HlYTDlZyZOnqqAa1dQeVRPwKzdWxzKuz8EJUBeLPTuj2
|
25
|
+
jNYxNSzax6TjYUGnRZES1/w1lOWHcBjM3A2XcR7sLNHQkM0NWsmL941tCs/wqRhw
|
26
|
+
WStCju+3uQHjlopABeMsfKfaOmfwgZqXgqm6wPucObTXy61ZxAXSY7yhnTj0jP/o
|
27
|
+
idMQDddNRDwPMleebjEHX0QbcKb3Cc6dapyUxKDMkER7eQfeHXnV/aOMVv6yigG1
|
28
|
+
jaOPJ+k3Atri5cZEFcdAqB4X30VOIHnSSIY/I/XIMnkJ6nrQclZzgRMH3zYh8+8w
|
29
|
+
YJ4+vrkTFspeu2s=
|
30
|
+
=aLlT
|
31
|
+
-----END PGP PUBLIC KEY BLOCK-----
|
@@ -0,0 +1,51 @@
|
|
1
|
+
-----BEGIN RSA PRIVATE KEY-----
|
2
|
+
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
|
51
|
+
-----END RSA PRIVATE KEY-----
|
@@ -0,0 +1 @@
|
|
1
|
+
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDT1lpUwXwiAlPVbLNcB+zh6+lyWcqokmpbClzmkxSyqEmg9kNpWyYB+XHfDzWB+VInN6GDkw26eYGFIp4utEk8ut3lMNVxZQ7N94vfExO7wVJyF9wSgNEKnTQW/vOtcT5QOnIdGrcR91df/eRCXEF1NH6WAOuTPOwAlepe04AvYasSUl4O9VZi1p6hs4/2ljSQa5nwBLA3PWUGAHWt8Dhi5A7/ndO8Apu9iaDuXodgXzM8OyHwY32iFQT1e4zfaE2F3aWNKxNJygrfxY6o8FpGkKdIGfjcVkrXcxo6N7vKuc2WOPpLM9t4d+2Rzcj1PAK7oFNztq9K2gNBj0IrNHQfwlHT9n2Q1bZUXA4CwZ9H4CXjdIopEuA9XtGhpwLyGxF+rgWsJJj4Ri1iivUgcBynTuT6oB2igNHD5FIPPzw6poE10jAn/COEhK1kAqu+GwPLaHRqmpYwTn5dsjE+8kfeltPD/qWopkSyQhXQPr+JJQHN934c002bzaRdbiHkvR7bdGHTbOw3uqa+bdSl2pkJgrUvOJZLvUVQeVqRh3GQpsN3NeO6tz+x0zAGMxPfXqABK4nQJ3GLSXhEW/ZfyLkFADWMaP6sWRIxIrq4B1VWWdAwkgFazH+1xCMrQlI7zYi5YpTdJ3ZF0L4POwLwW9FJDuSOCm7JD35HHS7l2Y+/TQ== maintainers@infrablocks.io
|
data/go
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
[ -n "$GO_DEBUG" ] && set -x
|
4
|
+
set -e
|
5
|
+
|
6
|
+
project_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
7
|
+
|
8
|
+
verbose="no"
|
9
|
+
skip_checks="no"
|
10
|
+
offline="no"
|
11
|
+
|
12
|
+
missing_dependency="no"
|
13
|
+
|
14
|
+
[ -n "$GO_DEBUG" ] && verbose="yes"
|
15
|
+
[ -n "$GO_SKIP_CHECKS" ] && skip_checks="yes"
|
16
|
+
[ -n "$GO_OFFLINE" ] && offline="yes"
|
17
|
+
|
18
|
+
|
19
|
+
if [[ "$skip_checks" = "no" ]]; then
|
20
|
+
echo "Checking for system dependencies."
|
21
|
+
ruby_version="$(cat "$project_dir"/.ruby-version)"
|
22
|
+
if ! type ruby >/dev/null 2>&1 || ! ruby -v | grep -q "$ruby_version"; then
|
23
|
+
echo "This codebase requires Ruby $ruby_version."
|
24
|
+
missing_dependency="yes"
|
25
|
+
fi
|
26
|
+
|
27
|
+
if [[ "$missing_dependency" = "yes" ]]; then
|
28
|
+
echo "Please install missing dependencies to continue."
|
29
|
+
exit 1
|
30
|
+
fi
|
31
|
+
|
32
|
+
echo "All system dependencies present. Continuing."
|
33
|
+
fi
|
34
|
+
|
35
|
+
if [[ "$offline" = "no" ]]; then
|
36
|
+
echo "Installing bundler."
|
37
|
+
if [[ "$verbose" = "yes" ]]; then
|
38
|
+
gem install --no-document bundler
|
39
|
+
else
|
40
|
+
gem install --no-document bundler --silent
|
41
|
+
fi
|
42
|
+
|
43
|
+
echo "Installing ruby dependencies."
|
44
|
+
if [[ "$verbose" = "yes" ]]; then
|
45
|
+
bundle install
|
46
|
+
else
|
47
|
+
bundle install --quiet
|
48
|
+
fi
|
49
|
+
fi
|
50
|
+
|
51
|
+
echo "Starting rake."
|
52
|
+
if [[ "$verbose" = "yes" ]]; then
|
53
|
+
time bundle exec rake --verbose "$@"
|
54
|
+
else
|
55
|
+
time bundle exec rake "$@"
|
56
|
+
fi
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'rake_circle_ci/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'rake_circle_ci'
|
8
|
+
spec.version = RakeCircleCI::VERSION
|
9
|
+
spec.authors = ['Toby Clemson']
|
10
|
+
spec.email = ['tobyclemson@gmail.com']
|
11
|
+
|
12
|
+
spec.summary = 'Rake tasks for CircleCI projects.'
|
13
|
+
spec.description = 'Allows managing environment variables and SSH keys.'
|
14
|
+
spec.homepage = "https://github.com/infrablocks/rake_circle_ci"
|
15
|
+
spec.license = 'MIT'
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = 'exe'
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ['lib']
|
23
|
+
|
24
|
+
spec.required_ruby_version = '>= 2.6'
|
25
|
+
|
26
|
+
spec.add_dependency 'rake_factory', '~> 0.23'
|
27
|
+
spec.add_dependency 'excon', '~> 0.72'
|
28
|
+
spec.add_dependency 'sshkey', '~> 2.0'
|
29
|
+
spec.add_dependency 'colored2', '~> 3.1'
|
30
|
+
|
31
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
32
|
+
spec.add_development_dependency 'rake', '~> 13.0'
|
33
|
+
spec.add_development_dependency 'rspec', '~> 3.9'
|
34
|
+
spec.add_development_dependency 'gem-release', '~> 2.0'
|
35
|
+
spec.add_development_dependency 'activesupport', '~> 5.2'
|
36
|
+
spec.add_development_dependency 'memfs', '~> 1.0'
|
37
|
+
spec.add_development_dependency 'simplecov', '~> 0.16'
|
38
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
[ -n "$DEBUG" ] && set -x
|
4
|
+
set -e
|
5
|
+
set -o pipefail
|
6
|
+
|
7
|
+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
8
|
+
PROJECT_DIR="$( cd "$SCRIPT_DIR/../../.." && pwd )"
|
9
|
+
|
10
|
+
cd "$PROJECT_DIR"
|
11
|
+
|
12
|
+
git crypt unlock
|
13
|
+
|
14
|
+
mkdir -p ~/.gem
|
15
|
+
cp config/secrets/rubygems/credentials ~/.gem/credentials
|
16
|
+
chmod 0600 ~/.gem/credentials
|
@@ -0,0 +1,19 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
[ -n "$DEBUG" ] && set -x
|
4
|
+
set -e
|
5
|
+
set -o pipefail
|
6
|
+
|
7
|
+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
8
|
+
PROJECT_DIR="$( cd "$SCRIPT_DIR/../../.." && pwd )"
|
9
|
+
|
10
|
+
cd "$PROJECT_DIR"
|
11
|
+
|
12
|
+
set +e
|
13
|
+
openssl version
|
14
|
+
openssl aes-256-cbc \
|
15
|
+
-d \
|
16
|
+
-md sha1 \
|
17
|
+
-in ./.circleci/gpg.private.enc \
|
18
|
+
-k "${ENCRYPTION_PASSPHRASE}" | gpg --import -
|
19
|
+
set -e
|
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
[ -n "$DEBUG" ] && set -x
|
4
|
+
set -e
|
5
|
+
set -o pipefail
|
6
|
+
|
7
|
+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
8
|
+
PROJECT_DIR="$( cd "$SCRIPT_DIR/../../.." && pwd )"
|
9
|
+
|
10
|
+
cd "$PROJECT_DIR"
|
11
|
+
|
12
|
+
./go version:bump[pre]
|
13
|
+
./go release
|
14
|
+
|
15
|
+
git status
|
16
|
+
git push
|
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
[ -n "$DEBUG" ] && set -x
|
4
|
+
set -e
|
5
|
+
set -o pipefail
|
6
|
+
|
7
|
+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
8
|
+
PROJECT_DIR="$( cd "$SCRIPT_DIR/../../.." && pwd )"
|
9
|
+
|
10
|
+
cd "$PROJECT_DIR"
|
11
|
+
|
12
|
+
git pull
|
13
|
+
|
14
|
+
./go version:bump[minor]
|
15
|
+
./go release
|
16
|
+
|
17
|
+
git status
|
18
|
+
git push
|
metadata
ADDED
@@ -0,0 +1,233 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rake_circle_ci
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0.pre.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Toby Clemson
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-03-07 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake_factory
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.23'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.23'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: excon
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.72'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.72'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: sshkey
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: colored2
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.1'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.1'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: bundler
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '2.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '2.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rake
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '13.0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '13.0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '3.9'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '3.9'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: gem-release
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '2.0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '2.0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: activesupport
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '5.2'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '5.2'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: memfs
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '1.0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '1.0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: simplecov
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0.16'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0.16'
|
167
|
+
description: Allows managing environment variables and SSH keys.
|
168
|
+
email:
|
169
|
+
- tobyclemson@gmail.com
|
170
|
+
executables: []
|
171
|
+
extensions: []
|
172
|
+
extra_rdoc_files: []
|
173
|
+
files:
|
174
|
+
- ".circleci/config.yml"
|
175
|
+
- ".circleci/gpg.private.enc"
|
176
|
+
- ".envrc"
|
177
|
+
- ".git-crypt/.gitattributes"
|
178
|
+
- ".git-crypt/keys/default/0/41D2606F66C3FF28874362B61A16916844CE9D82.gpg"
|
179
|
+
- ".git-crypt/keys/default/0/AAE932B730C2BA697FFDFAE05DA390873E38358B.gpg"
|
180
|
+
- ".gitattributes"
|
181
|
+
- ".gitignore"
|
182
|
+
- ".rspec"
|
183
|
+
- ".ruby-version"
|
184
|
+
- CODE_OF_CONDUCT.md
|
185
|
+
- Gemfile
|
186
|
+
- Gemfile.lock
|
187
|
+
- LICENSE.txt
|
188
|
+
- README.md
|
189
|
+
- Rakefile
|
190
|
+
- bin/console
|
191
|
+
- bin/setup
|
192
|
+
- config/secrets/.unlocked
|
193
|
+
- config/secrets/ci/encryption.passphrase
|
194
|
+
- config/secrets/ci/gpg.private
|
195
|
+
- config/secrets/ci/gpg.public
|
196
|
+
- config/secrets/ci/ssh.private
|
197
|
+
- config/secrets/ci/ssh.public
|
198
|
+
- config/secrets/rubygems/credentials
|
199
|
+
- go
|
200
|
+
- lib/rake_circle_ci.rb
|
201
|
+
- lib/rake_circle_ci/version.rb
|
202
|
+
- rake_circle_ci.gemspec
|
203
|
+
- scripts/ci/common/configure-git.sh
|
204
|
+
- scripts/ci/common/configure-rubygems.sh
|
205
|
+
- scripts/ci/common/install-git-crypt.sh
|
206
|
+
- scripts/ci/common/install-gpg-key.sh
|
207
|
+
- scripts/ci/steps/prerelease.sh
|
208
|
+
- scripts/ci/steps/release.sh
|
209
|
+
- scripts/ci/steps/test.sh
|
210
|
+
homepage: https://github.com/infrablocks/rake_circle_ci
|
211
|
+
licenses:
|
212
|
+
- MIT
|
213
|
+
metadata: {}
|
214
|
+
post_install_message:
|
215
|
+
rdoc_options: []
|
216
|
+
require_paths:
|
217
|
+
- lib
|
218
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '2.6'
|
223
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
224
|
+
requirements:
|
225
|
+
- - ">"
|
226
|
+
- !ruby/object:Gem::Version
|
227
|
+
version: 1.3.1
|
228
|
+
requirements: []
|
229
|
+
rubygems_version: 3.0.1
|
230
|
+
signing_key:
|
231
|
+
specification_version: 4
|
232
|
+
summary: Rake tasks for CircleCI projects.
|
233
|
+
test_files: []
|