git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62600 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eregon 2018-02-27 20:21:01 +00:00
Родитель cfe9836b35
Коммит edb46078ef
3 изменённых файлов: 20 добавлений и 13 удалений

Просмотреть файл

@ -20,6 +20,6 @@ matrix:
- gem update --system - gem update --system
- jdk: oraclejdk8 - jdk: oraclejdk8
install: install:
- curl -L https://github.com/graalvm/truffleruby/releases/download/vm-enterprise-0.28/truffleruby-testing-0.28.tar.gz | tar xz - curl -L https://github.com/oracle/truffleruby/releases/download/vm-enterprise-0.28/truffleruby-testing-0.28.tar.gz | tar xz
- source truffleruby/setup_env - source truffleruby/setup_env
- bundle install - bundle install

Просмотреть файл

@ -0,0 +1,18 @@
#!/bin/bash
# Assumes all commits have been synchronized to https://github.com/ruby/spec
# See spec/mspec/tool/sync/sync-rubyspec.rb
rm -rf spec/mspec
git clone --depth 1 https://github.com/ruby/mspec.git spec/mspec
commit=$(git -C spec/mspec log -n 1 --format='%h')
rm -rf spec/mspec/.git
git add spec/mspec
git commit -m "Update to ruby/mspec@${commit}"
rm -rf spec/ruby
git clone --depth 1 https://github.com/ruby/spec.git spec/ruby
commit=$(git -C spec/ruby log -n 1 --format='%h')
rm -rf spec/ruby/.git
git add spec/ruby
git commit -m "Update to ruby/spec@${commit}"

Просмотреть файл

@ -1,6 +1,6 @@
IMPLS = { IMPLS = {
truffleruby: { truffleruby: {
git: "https://github.com/graalvm/truffleruby.git", git: "https://github.com/oracle/truffleruby.git",
from_commit: "f10ab6988d", from_commit: "f10ab6988d",
}, },
jruby: { jruby: {
@ -182,17 +182,6 @@ end
def verify_commits(impl) def verify_commits(impl)
puts puts
Dir.chdir(SOURCE_REPO) do Dir.chdir(SOURCE_REPO) do
history = `git log master...`
history.lines.slice_before(/^commit \h{40}$/).each do |commit, *message|
commit = commit.chomp.split.last
message = message.join
if /\W(#\d+)/ === message
puts "Commit #{commit} contains an unqualified issue number: #{$1}"
puts "Replace it with #{impl.repo_org}/#{impl.repo_name}#{$1}"
sh "git", "rebase", "-i", "#{commit}^"
end
end
puts "Manually check commit messages:" puts "Manually check commit messages:"
print "Press enter >" print "Press enter >"
STDIN.gets STDIN.gets