Fancy
This commit is contained in:
parent
5a1fdb7c7f
commit
5ec985b0df
|
@ -73,6 +73,11 @@ If you have vagrant available (this is temporary whilst I'm hacking on v5 suppor
|
||||||
- `bundle exec rspec`
|
- `bundle exec rspec`
|
||||||
|
|
||||||
## Releasing
|
## Releasing
|
||||||
|
- Update Changelog
|
||||||
|
- Bump version in gemspec
|
||||||
|
- Commit
|
||||||
|
- Create tag `git tag v<version-number-in-gemspec>`
|
||||||
- `bundle exec rake install_jars`
|
- `bundle exec rake install_jars`
|
||||||
|
- `bundle exec rake pre_release_checks`
|
||||||
- `gem build logstash-output-jdbc.gemspec`
|
- `gem build logstash-output-jdbc.gemspec`
|
||||||
- `gem push`
|
- `gem push`
|
||||||
|
|
19
Rakefile
19
Rakefile
|
@ -1,3 +1,4 @@
|
||||||
|
# encoding: utf-8
|
||||||
require 'logstash/devutils/rake'
|
require 'logstash/devutils/rake'
|
||||||
require 'jars/installer'
|
require 'jars/installer'
|
||||||
require 'rubygems'
|
require 'rubygems'
|
||||||
|
@ -9,21 +10,29 @@ task :install_jars do
|
||||||
Jars::Installer.new.vendor_jars!(false)
|
Jars::Installer.new.vendor_jars!(false)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def colourize(text, color_code)
|
||||||
|
"\e[#{color_code}m#{text}\e[0m"
|
||||||
|
end
|
||||||
|
|
||||||
desc 'Pre-release checks'
|
desc 'Pre-release checks'
|
||||||
task :pre_release_checks do
|
task :pre_release_checks do
|
||||||
|
|
||||||
if `git status --porcelain`.chomp.length > 0
|
if `git status --porcelain`.chomp.length > 0
|
||||||
raise "You have unstaged or uncommitted changes! Please only deploy from a clean working directory!"
|
warn colourize(' ✘ ', 31) + 'You have unstaged or uncommitted changes! Please only release from a clean working directory!'
|
||||||
|
else
|
||||||
|
puts colourize(" ✔ ", 32) + ' No un-staged commits'
|
||||||
end
|
end
|
||||||
|
|
||||||
spec = Gem::Specification::load("logstash-output-jdbc.gemspec")
|
spec = Gem::Specification::load("logstash-output-jdbc.gemspec")
|
||||||
expected_tag_name = "v#{spec.version}"
|
expected_tag_name = "v#{spec.version}"
|
||||||
|
|
||||||
current_tag_name = `git describe --exact-match --tags HEAD`.chomp
|
current_tag_name = `git describe --exact-match --tags HEAD 2>&1`.chomp
|
||||||
if $? == 0
|
if $?.success? and current_tag_name == expected_tag_name
|
||||||
raise "Expected git tag to be '#{expected_tag_name}', but got '#{current_tag_name}'." if current_tag_name != expected_tag_name
|
puts colourize(' ✔ ', 32) + 'Tag matches current HEAD'
|
||||||
|
elsif $?.success? and current_tag_name == expected_tag_name
|
||||||
|
warn colourize(' ✘ ', 31) + "Expected git tag to be '#{expected_tag_name}', but got '#{current_tag_name}'."
|
||||||
else
|
else
|
||||||
raise "Expected git tag to be '#{expected_tag_name}, but got nothing."
|
warn colourize(' ✘ ', 31) + "Expected git tag to be '#{expected_tag_name}, but got nothing."
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user