itamae-plugin-recipe-git_now 0.1.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.github/workflows/test.yml +84 -0
- data/.gitignore +0 -1
- data/CHANGELOG.md +28 -0
- data/README.md +3 -14
- data/Rakefile +0 -28
- data/itamae-plugin-recipe-git_now.gemspec +8 -2
- data/lib/itamae/plugin/recipe/git_now/default.rb +6 -1
- data/lib/itamae/plugin/recipe/git_now/version.rb +1 -1
- metadata +33 -20
- data/Vagrantfile +0 -105
- data/ci/build.sh +0 -8
- data/ci/destroy_old_droplets.rb +0 -22
- data/recipes/install.rb +0 -1
- data/recipes/node.yml +0 -3
- data/wercker.yml +0 -84
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3e841c1e0efed6bd5d6dae5a67029e7eaffea87eb261df02fa3dd36dc100483f
|
4
|
+
data.tar.gz: 1f7568eaf0aa9545951bdb79c9f35004789b7cfe26b6fd105518315a2b7fb0a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: acd79e1bf36e228819df145fb01d8fca05b59226c330297c0c8c8cee4a44fa798eb14f323aebcddd18e811849980584bfbc5e9210e2fe676b20e5d8d48d814b0
|
7
|
+
data.tar.gz: fd2b14445a986ccc47e8b4491e48fa272baf9aec830e7a89e81afd19b7b9ed0e6bfc7648fb659d437d9c7daca88acae3bfa0066526fbcb52e279ad2bacbb61e1
|
@@ -0,0 +1,84 @@
|
|
1
|
+
name: test
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
pull_request:
|
8
|
+
types:
|
9
|
+
- opened
|
10
|
+
- synchronize
|
11
|
+
- reopened
|
12
|
+
schedule:
|
13
|
+
- cron: "0 10 * * 5" # JST 19:00 (Fri)
|
14
|
+
|
15
|
+
jobs:
|
16
|
+
test:
|
17
|
+
runs-on: ubuntu-latest
|
18
|
+
|
19
|
+
strategy:
|
20
|
+
fail-fast: false
|
21
|
+
|
22
|
+
matrix:
|
23
|
+
ruby:
|
24
|
+
- "2.3"
|
25
|
+
image:
|
26
|
+
- centos:7
|
27
|
+
- centos:8
|
28
|
+
- debian:jessie
|
29
|
+
- debian:stretch
|
30
|
+
- debian:buster
|
31
|
+
|
32
|
+
steps:
|
33
|
+
- uses: actions/checkout@v3
|
34
|
+
|
35
|
+
- uses: ruby/setup-ruby@v1
|
36
|
+
with:
|
37
|
+
ruby-version: ${{ matrix.ruby }}
|
38
|
+
bundler-cache: true
|
39
|
+
cache-version: ${{ matrix.gemfile }}
|
40
|
+
|
41
|
+
- run: bundle update --jobs $(nproc) --retry 3
|
42
|
+
|
43
|
+
- name: Run Itamae
|
44
|
+
run: |
|
45
|
+
set -xe
|
46
|
+
bundle exec itamae docker --node-yaml=spec/recipes/node.yml spec/recipes/install.rb --image=$IMAGE --tag itamae-plugin:latest
|
47
|
+
env:
|
48
|
+
IMAGE: ${{ matrix.image }}
|
49
|
+
|
50
|
+
- name: Run Serverspec
|
51
|
+
run: |
|
52
|
+
set -xe
|
53
|
+
bundle exec rspec
|
54
|
+
env:
|
55
|
+
DOCKER_IMAGE: itamae-plugin:latest
|
56
|
+
|
57
|
+
- name: Slack Notification (not success)
|
58
|
+
uses: lazy-actions/slatify@master
|
59
|
+
if: "! success()"
|
60
|
+
continue-on-error: true
|
61
|
+
with:
|
62
|
+
job_name: ${{ format('*build* ({0}, {1})', matrix.ruby, matrix.image) }}
|
63
|
+
type: ${{ job.status }}
|
64
|
+
icon_emoji: ":octocat:"
|
65
|
+
url: ${{ secrets.SLACK_WEBHOOK }}
|
66
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
67
|
+
|
68
|
+
notify:
|
69
|
+
needs:
|
70
|
+
- test
|
71
|
+
|
72
|
+
runs-on: ubuntu-latest
|
73
|
+
|
74
|
+
steps:
|
75
|
+
- name: Slack Notification (success)
|
76
|
+
uses: lazy-actions/slatify@master
|
77
|
+
if: always()
|
78
|
+
continue-on-error: true
|
79
|
+
with:
|
80
|
+
job_name: '*build*'
|
81
|
+
type: ${{ job.status }}
|
82
|
+
icon_emoji: ":octocat:"
|
83
|
+
url: ${{ secrets.SLACK_WEBHOOK }}
|
84
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
data/.gitignore
CHANGED
data/CHANGELOG.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# Change Log
|
2
|
+
|
3
|
+
## Unreleased
|
4
|
+
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-git_now/compare/v1.0.0...master)
|
5
|
+
|
6
|
+
## [v1.0.0](https://github.com/sue445/itamae-plugin-recipe-git_now/tree/v1.0.0) (2022/11/05)
|
7
|
+
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-git_now/compare/v0.1.2...v1.0.0)
|
8
|
+
|
9
|
+
* Change default schema to https
|
10
|
+
* https://github.com/sue445/itamae-plugin-recipe-git_now/pull/26
|
11
|
+
|
12
|
+
## [v0.1.2](https://github.com/sue445/itamae-plugin-recipe-git_now/tree/v0.1.2) (2021/11/20)
|
13
|
+
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-git_now/compare/v0.1.1...v0.1.2)
|
14
|
+
|
15
|
+
* Enable MFA requirement for gem releasing
|
16
|
+
* https://github.com/sue445/itamae-plugin-recipe-git_now/pull/25
|
17
|
+
|
18
|
+
## [v0.1.1](https://github.com/sue445/itamae-plugin-recipe-git_now/tree/v0.1.1) (2016/03/07)
|
19
|
+
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-git_now/compare/v0.1.0...v0.1.1)
|
20
|
+
|
21
|
+
**Merged pull requests:**
|
22
|
+
|
23
|
+
- Setup CI [\#1](https://github.com/sue445/itamae-plugin-recipe-git_now/pull/1) ([sue445](https://github.com/sue445))
|
24
|
+
|
25
|
+
## [v0.1.0](https://github.com/sue445/itamae-plugin-recipe-git_now/tree/v0.1.0) (2015/12/17)
|
26
|
+
|
27
|
+
|
28
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
data/README.md
CHANGED
@@ -3,9 +3,7 @@
|
|
3
3
|
[Itamae](https://github.com/itamae-kitchen/itamae) plugin to install [git-now](https://github.com/iwata/git-now)
|
4
4
|
|
5
5
|
[](https://badge.fury.io/rb/itamae-plugin-recipe-git_now)
|
6
|
-
[](https://app.wercker.com/project/bykey/48a0737824a0f6c97b62ae3ba89a6446)
|
6
|
+
[](https://github.com/sue445/itamae-plugin-recipe-git_now/actions?query=workflow%3Atest)
|
9
7
|
|
10
8
|
## Installation
|
11
9
|
|
@@ -46,8 +44,8 @@ git_now:
|
|
46
44
|
# source dir (default: #{node[:git_now][:prefix]}/src)
|
47
45
|
src: /usr/local/src
|
48
46
|
|
49
|
-
# specify scheme to use in git clone (default:
|
50
|
-
scheme:
|
47
|
+
# specify scheme to use in git clone (default: https)
|
48
|
+
scheme: https
|
51
49
|
|
52
50
|
# install revision (default: HEAD)
|
53
51
|
revision: v0.1.1.0
|
@@ -59,15 +57,6 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
59
57
|
|
60
58
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
61
59
|
|
62
|
-
## Testing
|
63
|
-
requirements [Vagrant](https://www.vagrantup.com/)
|
64
|
-
|
65
|
-
```sh
|
66
|
-
vagrant up centos70
|
67
|
-
bundle exec rake itamae:centos70
|
68
|
-
bundle exec rake spec:centos70
|
69
|
-
```
|
70
|
-
|
71
60
|
## Contributing
|
72
61
|
|
73
62
|
Bug reports and pull requests are welcome on GitHub at https://github.com/sue445/itamae-plugin-recipe-git_now.
|
data/Rakefile
CHANGED
@@ -1,29 +1 @@
|
|
1
1
|
require "bundler/gem_tasks"
|
2
|
-
require "rspec/core/rake_task"
|
3
|
-
|
4
|
-
task :spec => "spec:all"
|
5
|
-
|
6
|
-
HOSTS = %w(centos70 debian8)
|
7
|
-
|
8
|
-
namespace :spec do
|
9
|
-
task :all => HOSTS
|
10
|
-
|
11
|
-
HOSTS.each do |host|
|
12
|
-
RSpec::Core::RakeTask.new(host.to_sym) do |t|
|
13
|
-
puts "Running tests to #{host} ..."
|
14
|
-
ENV["TARGET_HOST"] = host
|
15
|
-
t.pattern = "spec/*_spec.rb"
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
namespace :itamae do
|
21
|
-
task :all => HOSTS
|
22
|
-
|
23
|
-
HOSTS.each do |host|
|
24
|
-
desc "Running itamae to #{host}"
|
25
|
-
task host do
|
26
|
-
sh "bundle exec itamae ssh --host=#{host} --vagrant --node-yaml=recipes/node.yml recipes/install.rb"
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
@@ -14,6 +14,11 @@ Gem::Specification.new do |spec|
|
|
14
14
|
spec.homepage = "https://github.com/sue445/itamae-plugin-recipe-git_now"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
18
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
19
|
+
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
20
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
21
|
+
|
17
22
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
23
|
spec.bindir = "exe"
|
19
24
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
@@ -21,7 +26,8 @@ Gem::Specification.new do |spec|
|
|
21
26
|
|
22
27
|
spec.add_dependency "itamae"
|
23
28
|
|
24
|
-
spec.add_development_dependency "bundler", "
|
25
|
-
spec.add_development_dependency "
|
29
|
+
spec.add_development_dependency "bundler", ">= 1.10"
|
30
|
+
spec.add_development_dependency "docker-api"
|
31
|
+
spec.add_development_dependency "rake"
|
26
32
|
spec.add_development_dependency "serverspec"
|
27
33
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
node.reverse_merge!(
|
2
2
|
git_now: {
|
3
3
|
prefix: "/usr/local",
|
4
|
-
scheme: "
|
4
|
+
scheme: "https",
|
5
5
|
},
|
6
6
|
)
|
7
7
|
|
@@ -10,6 +10,11 @@ node[:git_now][:src] ||= "#{node[:git_now][:prefix]}/src"
|
|
10
10
|
package "git"
|
11
11
|
package "make"
|
12
12
|
|
13
|
+
case node[:platform]
|
14
|
+
when 'redhat'
|
15
|
+
package "which"
|
16
|
+
end
|
17
|
+
|
13
18
|
install_dir = "#{node[:git_now][:src]}/git-now"
|
14
19
|
|
15
20
|
git install_dir do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: itamae-plugin-recipe-git_now
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sue445
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-11-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: itamae
|
@@ -28,30 +28,44 @@ dependencies:
|
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '1.10'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '1.10'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: docker-api
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: rake
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
44
58
|
requirements:
|
45
|
-
- - "
|
59
|
+
- - ">="
|
46
60
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
61
|
+
version: '0'
|
48
62
|
type: :development
|
49
63
|
prerelease: false
|
50
64
|
version_requirements: !ruby/object:Gem::Requirement
|
51
65
|
requirements:
|
52
|
-
- - "
|
66
|
+
- - ">="
|
53
67
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
68
|
+
version: '0'
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
70
|
name: serverspec
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -73,30 +87,30 @@ executables: []
|
|
73
87
|
extensions: []
|
74
88
|
extra_rdoc_files: []
|
75
89
|
files:
|
90
|
+
- ".github/workflows/test.yml"
|
76
91
|
- ".github_changelog_generator"
|
77
92
|
- ".gitignore"
|
78
93
|
- ".rspec"
|
94
|
+
- CHANGELOG.md
|
79
95
|
- Gemfile
|
80
96
|
- LICENSE.txt
|
81
97
|
- README.md
|
82
98
|
- Rakefile
|
83
|
-
- Vagrantfile
|
84
99
|
- bin/console
|
85
100
|
- bin/setup
|
86
|
-
- ci/build.sh
|
87
|
-
- ci/destroy_old_droplets.rb
|
88
101
|
- itamae-plugin-recipe-git_now.gemspec
|
89
102
|
- lib/itamae/plugin/recipe/git_now.rb
|
90
103
|
- lib/itamae/plugin/recipe/git_now/default.rb
|
91
104
|
- lib/itamae/plugin/recipe/git_now/version.rb
|
92
|
-
- recipes/install.rb
|
93
|
-
- recipes/node.yml
|
94
|
-
- wercker.yml
|
95
105
|
homepage: https://github.com/sue445/itamae-plugin-recipe-git_now
|
96
106
|
licenses:
|
97
107
|
- MIT
|
98
|
-
metadata:
|
99
|
-
|
108
|
+
metadata:
|
109
|
+
homepage_uri: https://github.com/sue445/itamae-plugin-recipe-git_now
|
110
|
+
source_code_uri: https://github.com/sue445/itamae-plugin-recipe-git_now
|
111
|
+
changelog_uri: https://github.com/sue445/itamae-plugin-recipe-git_now/blob/master/CHANGELOG.md
|
112
|
+
rubygems_mfa_required: 'true'
|
113
|
+
post_install_message:
|
100
114
|
rdoc_options: []
|
101
115
|
require_paths:
|
102
116
|
- lib
|
@@ -111,9 +125,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
111
125
|
- !ruby/object:Gem::Version
|
112
126
|
version: '0'
|
113
127
|
requirements: []
|
114
|
-
|
115
|
-
|
116
|
-
signing_key:
|
128
|
+
rubygems_version: 3.3.7
|
129
|
+
signing_key:
|
117
130
|
specification_version: 4
|
118
131
|
summary: Itamae plugin to install git-now
|
119
132
|
test_files: []
|
data/Vagrantfile
DELETED
@@ -1,105 +0,0 @@
|
|
1
|
-
# -*- mode: ruby -*-
|
2
|
-
# vi: set ft=ruby :
|
3
|
-
|
4
|
-
# All Vagrant configuration is done below. The "2" in Vagrant.configure
|
5
|
-
# configures the configuration version (we support older styles for
|
6
|
-
# backwards compatibility). Please don't change it unless you know what
|
7
|
-
# you're doing.
|
8
|
-
Vagrant.configure(2) do |config|
|
9
|
-
config.vm.provider :digital_ocean do |provider, override|
|
10
|
-
override.vm.box = "digital_ocean"
|
11
|
-
override.vm.box_url = "https://github.com/smdahlen/vagrant-digitalocean/raw/master/box/digital_ocean.box"
|
12
|
-
provider.token = ENV["DIGITALOCEAN_ACCESS_TOKEN"]
|
13
|
-
provider.region = "nyc1"
|
14
|
-
provider.size = "512MB"
|
15
|
-
|
16
|
-
if ENV["WERCKER"] == "true"
|
17
|
-
provider.ssh_key_name = "wercker-#{ENV['WERCKER_GIT_REPOSITORY']}"
|
18
|
-
override.ssh.private_key_path = "~/.ssh/id_rsa.vagrant"
|
19
|
-
else
|
20
|
-
provider.ssh_key_name = "local"
|
21
|
-
override.ssh.private_key_path = "~/.ssh/id_rsa"
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
config.vm.define :centos70 do |c|
|
26
|
-
c.vm.box = "centos/7"
|
27
|
-
c.vm.provider :digital_ocean do |provider, override|
|
28
|
-
provider.image = "centos-7-0-x64"
|
29
|
-
end
|
30
|
-
c.vm.hostname = 'itamae-centos70'
|
31
|
-
c.vm.hostname += "-#{ENV['WERCKER_BUILD_ID']}" if ENV['WERCKER_BUILD_ID']
|
32
|
-
end
|
33
|
-
|
34
|
-
config.vm.define :debian8 do |c|
|
35
|
-
c.vm.box = "debian/jessie64"
|
36
|
-
c.vm.provider :digital_ocean do |provider, override|
|
37
|
-
provider.image = "debian-8-x64"
|
38
|
-
end
|
39
|
-
c.vm.hostname = 'itamae-debian8'
|
40
|
-
c.vm.hostname += "-#{ENV['WERCKER_BUILD_ID']}" if ENV['WERCKER_BUILD_ID']
|
41
|
-
end
|
42
|
-
|
43
|
-
# The most common configuration options are documented and commented below.
|
44
|
-
# For a complete reference, please see the online documentation at
|
45
|
-
# https://docs.vagrantup.com.
|
46
|
-
|
47
|
-
# Every Vagrant development environment requires a box. You can search for
|
48
|
-
# boxes at https://atlas.hashicorp.com/search.
|
49
|
-
# config.vm.box = "base"
|
50
|
-
|
51
|
-
# Disable automatic box update checking. If you disable this, then
|
52
|
-
# boxes will only be checked for updates when the user runs
|
53
|
-
# `vagrant box outdated`. This is not recommended.
|
54
|
-
# config.vm.box_check_update = false
|
55
|
-
|
56
|
-
# Create a forwarded port mapping which allows access to a specific port
|
57
|
-
# within the machine from a port on the host machine. In the example below,
|
58
|
-
# accessing "localhost:8080" will access port 80 on the guest machine.
|
59
|
-
# config.vm.network "forwarded_port", guest: 80, host: 8080
|
60
|
-
|
61
|
-
# Create a private network, which allows host-only access to the machine
|
62
|
-
# using a specific IP.
|
63
|
-
# config.vm.network "private_network", ip: "192.168.33.10"
|
64
|
-
|
65
|
-
# Create a public network, which generally matched to bridged network.
|
66
|
-
# Bridged networks make the machine appear as another physical device on
|
67
|
-
# your network.
|
68
|
-
# config.vm.network "public_network"
|
69
|
-
|
70
|
-
# Share an additional folder to the guest VM. The first argument is
|
71
|
-
# the path on the host to the actual folder. The second argument is
|
72
|
-
# the path on the guest to mount the folder. And the optional third
|
73
|
-
# argument is a set of non-required options.
|
74
|
-
# config.vm.synced_folder "../data", "/vagrant_data"
|
75
|
-
|
76
|
-
# Provider-specific configuration so you can fine-tune various
|
77
|
-
# backing providers for Vagrant. These expose provider-specific options.
|
78
|
-
# Example for VirtualBox:
|
79
|
-
#
|
80
|
-
# config.vm.provider "virtualbox" do |vb|
|
81
|
-
# # Display the VirtualBox GUI when booting the machine
|
82
|
-
# vb.gui = true
|
83
|
-
#
|
84
|
-
# # Customize the amount of memory on the VM:
|
85
|
-
# vb.memory = "1024"
|
86
|
-
# end
|
87
|
-
#
|
88
|
-
# View the documentation for the provider you are using for more
|
89
|
-
# information on available options.
|
90
|
-
|
91
|
-
# Define a Vagrant Push strategy for pushing to Atlas. Other push strategies
|
92
|
-
# such as FTP and Heroku are also available. See the documentation at
|
93
|
-
# https://docs.vagrantup.com/v2/push/atlas.html for more information.
|
94
|
-
# config.push.define "atlas" do |push|
|
95
|
-
# push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME"
|
96
|
-
# end
|
97
|
-
|
98
|
-
# Enable provisioning with a shell script. Additional provisioners such as
|
99
|
-
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
|
100
|
-
# documentation for more information about their specific syntax and use.
|
101
|
-
# config.vm.provision "shell", inline: <<-SHELL
|
102
|
-
# sudo apt-get update
|
103
|
-
# sudo apt-get install -y apache2
|
104
|
-
# SHELL
|
105
|
-
end
|
data/ci/build.sh
DELETED
data/ci/destroy_old_droplets.rb
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
# via. https://github.com/itamae-kitchen/itamae/blob/v1.9.3/ci/destroy_old_droplets.rb
|
2
|
-
require 'net/https'
|
3
|
-
require 'json'
|
4
|
-
require 'time'
|
5
|
-
|
6
|
-
http = Net::HTTP.new("api.digitalocean.com", 443)
|
7
|
-
http.use_ssl = true
|
8
|
-
|
9
|
-
res = http.start do
|
10
|
-
http.get("/v2/droplets", "Authorization" => "Bearer #{ENV['DIGITALOCEAN_ACCESS_TOKEN']}")
|
11
|
-
end
|
12
|
-
|
13
|
-
droplets = JSON.parse(res.body)['droplets']
|
14
|
-
droplets.each do |droplet|
|
15
|
-
next unless /^itamae-/ =~ droplet['name']
|
16
|
-
if Time.now - Time.parse(droplet['created_at']) >= 60 * 60
|
17
|
-
puts "destroying #{droplet}..."
|
18
|
-
res = http.start do
|
19
|
-
http.delete("/v2/droplets/#{droplet['id']}", "Authorization" => "Bearer #{ENV['DIGITALOCEAN_ACCESS_TOKEN']}")
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
data/recipes/install.rb
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
include_recipe "git_now"
|
data/recipes/node.yml
DELETED
data/wercker.yml
DELETED
@@ -1,84 +0,0 @@
|
|
1
|
-
# This references the default Ruby container from
|
2
|
-
# the Docker Hub.
|
3
|
-
# https://registry.hub.docker.com/_/ruby/
|
4
|
-
# If you want to use a specific version you would use a tag:
|
5
|
-
# ruby:2.2.2
|
6
|
-
box: sue445/rvm-vagrant-digitalocean@1.0.0
|
7
|
-
# You can also use services such as databases. Read more on our dev center:
|
8
|
-
# http://devcenter.wercker.com/docs/services/index.html
|
9
|
-
# services:
|
10
|
-
# - postgres
|
11
|
-
# http://devcenter.wercker.com/docs/services/postgresql.html
|
12
|
-
|
13
|
-
# - mongodb
|
14
|
-
# http://devcenter.wercker.com/docs/services/mongodb.html
|
15
|
-
|
16
|
-
# This is the build pipeline. Pipelines are the core of wercker
|
17
|
-
# Read more about pipelines on our dev center
|
18
|
-
# http://devcenter.wercker.com/docs/pipelines/index.html
|
19
|
-
build:
|
20
|
-
# Steps make up the actions in your pipeline
|
21
|
-
# Read more about steps on our dev center:
|
22
|
-
# http://devcenter.wercker.com/docs/steps/index.html
|
23
|
-
steps:
|
24
|
-
- rvm-use:
|
25
|
-
version: 2.3.0
|
26
|
-
|
27
|
-
- script:
|
28
|
-
name: install bundler
|
29
|
-
code: gem install bundler -v 1.10.6
|
30
|
-
|
31
|
-
- bundle-install:
|
32
|
-
jobs: 4
|
33
|
-
|
34
|
-
- script:
|
35
|
-
name: echo ruby information
|
36
|
-
code: |
|
37
|
-
echo "ruby version $(ruby --version) running"
|
38
|
-
echo "from location $(which ruby)"
|
39
|
-
echo -p "gem list: $(gem list)"
|
40
|
-
|
41
|
-
- script:
|
42
|
-
name: create .ssh directory
|
43
|
-
code: mkdir -p $HOME/.ssh
|
44
|
-
|
45
|
-
- create-file:
|
46
|
-
name: put private key
|
47
|
-
filename: $HOME/.ssh/id_rsa.vagrant
|
48
|
-
overwrite: true
|
49
|
-
hide-from-log: true
|
50
|
-
content: $DIGITALOCEAN_KEY_PRIVATE
|
51
|
-
|
52
|
-
- create-file:
|
53
|
-
name: put public key
|
54
|
-
filename: $HOME/.ssh/id_rsa.vagrant.pub
|
55
|
-
overwrite: true
|
56
|
-
hide-from-log: true
|
57
|
-
content: $DIGITALOCEAN_KEY_PUBLIC
|
58
|
-
|
59
|
-
- script:
|
60
|
-
name: chmod 600 id_rsa
|
61
|
-
code: chmod 600 $HOME/.ssh/id_rsa.vagrant
|
62
|
-
|
63
|
-
- script:
|
64
|
-
name: test centos70
|
65
|
-
code: ./ci/build.sh centos70
|
66
|
-
|
67
|
-
- script:
|
68
|
-
name: test debian8
|
69
|
-
code: ./ci/build.sh debian8
|
70
|
-
|
71
|
-
after-steps:
|
72
|
-
- script:
|
73
|
-
name: shutdown all vms
|
74
|
-
code: |
|
75
|
-
vagrant destroy -f centos70
|
76
|
-
vagrant destroy -f debian8
|
77
|
-
|
78
|
-
- script:
|
79
|
-
name: shutdown old vms
|
80
|
-
code: bundle exec ruby ci/destroy_old_droplets.rb
|
81
|
-
|
82
|
-
- wantedly/pretty-slack-notify:
|
83
|
-
webhook_url: $SLACK_WEBHOOK_URL
|
84
|
-
username: wercker_build
|