mruby-set: remove files needed for an independent gem

This commit is contained in:
Yukihiro "Matz" Matsumoto
2023-01-10 10:51:23 +09:00
parent e2ffcbab6e
commit a800988239
4 changed files with 0 additions and 43 deletions
-1
View File
@@ -1 +0,0 @@
/mruby/
-14
View File
@@ -1,14 +0,0 @@
sudo: false
addons:
apt:
packages:
- rake
- bison
- git
- gperf
language: c
compiler:
- gcc
- clang
script:
- rake test
-22
View File
@@ -1,22 +0,0 @@
MRUBY_CONFIG = File.expand_path(ENV["MRUBY_CONFIG"] || "build_config.rb")
file :mruby do
sh "git clone --depth=1 git://github.com/mruby/mruby.git"
end
desc "compile binary"
task :compile => :mruby do
sh "cd mruby && MRUBY_CONFIG=#{MRUBY_CONFIG} rake all"
end
desc "test"
task :test => :mruby do
sh "cd mruby && MRUBY_CONFIG=#{MRUBY_CONFIG} rake all test"
end
desc "cleanup"
task :clean do
sh "cd mruby && rake deep_clean"
end
task :default => :test
-6
View File
@@ -1,6 +0,0 @@
MRuby::Build.new do |conf|
toolchain :gcc
conf.gembox 'default'
conf.gem '../mruby-set'
conf.enable_test
end