diff options
author | YamaArashi <shadow962@live.com> | 2016-09-22 22:46:42 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-09-22 23:18:40 -0700 |
commit | b62873878ba04fdc10c9a18ad43b9a6585a024a0 (patch) | |
tree | c51e1ce7a604f571f76726c03135a139d2a4b5e6 /compare.sh | |
parent | 775e8544b3acffa3e95932cef723d0a72f26e22d (diff) |
build Ruby/Sapphire separately
Diffstat (limited to 'compare.sh')
-rwxr-xr-x | compare.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/compare.sh b/compare.sh new file mode 100755 index 000000000..c6569958f --- /dev/null +++ b/compare.sh @@ -0,0 +1,30 @@ +#!/bin/sh +echo "Checking Ruby 1.0" +make tidy >/dev/null +make ruby >/dev/null +sha1sum -c ruby.sha1 + +echo "Checking Ruby 1.1" +make tidy >/dev/null +make ruby_rev1 >/dev/null +sha1sum -c ruby_rev1.sha1 + +echo "Checking Ruby 1.2" +make tidy >/dev/null +make ruby_rev2 >/dev/null +sha1sum -c ruby_rev2.sha1 + +echo "Checking Sapphire 1.0" +make tidy >/dev/null +make sapphire >/dev/null +sha1sum -c sapphire.sha1 + +echo "Checking Sapphire 1.1" +make tidy >/dev/null +make sapphire_rev1 >/dev/null +sha1sum -c sapphire_rev1.sha1 + +echo "Checking Sapphire 1.2" +make tidy >/dev/null +make sapphire_rev2 >/dev/null +sha1sum -c sapphire_rev2.sha1 |