script_core 0.2.1 → 0.2.6
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 +4 -4
- data/.gitignore +2 -0
- data/.rubocop.yml +43 -42
- data/.ruby-version +1 -1
- data/.travis.yml +2 -1
- data/Gemfile +4 -6
- data/README.md +15 -3
- data/Rakefile +3 -12
- data/bin/bundle +114 -0
- data/bin/console +2 -2
- data/bootstrap.sh +2 -2
- data/ext/enterprise_script_service/libseccomp/.travis.yml +3 -5
- data/ext/enterprise_script_service/libseccomp/CHANGELOG +10 -0
- data/ext/enterprise_script_service/libseccomp/CREDITS +3 -0
- data/ext/enterprise_script_service/libseccomp/README.md +18 -0
- data/ext/enterprise_script_service/libseccomp/configure.ac +1 -1
- data/ext/enterprise_script_service/libseccomp/include/seccomp-syscalls.h +7 -0
- data/ext/enterprise_script_service/libseccomp/src/arch-s390-syscalls.c +16 -0
- data/ext/enterprise_script_service/libseccomp/src/arch-s390x-syscalls.c +16 -0
- data/ext/enterprise_script_service/libseccomp/tests/.gitignore +1 -0
- data/ext/enterprise_script_service/libseccomp/tests/15-basic-resolver.c +3 -3
- data/ext/enterprise_script_service/libseccomp/tests/52-basic-load.c +48 -0
- data/ext/enterprise_script_service/libseccomp/tests/52-basic-load.py +38 -0
- data/ext/enterprise_script_service/libseccomp/tests/52-basic-load.tests +11 -0
- data/ext/enterprise_script_service/libseccomp/tests/Makefile.am +6 -3
- data/ext/enterprise_script_service/libseccomp/tests/regression +4 -0
- data/ext/enterprise_script_service/libseccomp/tools/Makefile.am +0 -3
- data/ext/enterprise_script_service/libseccomp/tools/scmp_bpf_sim.c +2 -0
- data/ext/enterprise_script_service/mruby/.github/workflows/build.yml +106 -0
- data/ext/enterprise_script_service/mruby/.github/workflows/main.yml +24 -0
- data/ext/enterprise_script_service/mruby/.gitignore +3 -0
- data/ext/enterprise_script_service/mruby/.gitlab-ci.yml +1627 -427
- data/ext/enterprise_script_service/mruby/.travis.yml +6 -14
- data/ext/enterprise_script_service/mruby/AUTHORS +1 -0
- data/ext/enterprise_script_service/mruby/CONTRIBUTING.md +1 -1
- data/ext/enterprise_script_service/mruby/Doxyfile +1 -1
- data/ext/enterprise_script_service/mruby/LICENSE +1 -1
- data/ext/enterprise_script_service/mruby/Makefile +1 -3
- data/ext/enterprise_script_service/mruby/README.md +6 -6
- data/ext/enterprise_script_service/mruby/Rakefile +8 -7
- data/ext/enterprise_script_service/mruby/appveyor.yml +9 -12
- data/ext/enterprise_script_service/mruby/appveyor_config.rb +8 -12
- data/ext/enterprise_script_service/mruby/build_config.rb +6 -6
- data/ext/enterprise_script_service/mruby/doc/guides/compile.md +10 -6
- data/ext/enterprise_script_service/mruby/doc/guides/debugger.md +1 -1
- data/ext/enterprise_script_service/mruby/doc/guides/mrbconf.md +4 -8
- data/ext/enterprise_script_service/mruby/doc/guides/mrbgems.md +3 -3
- data/ext/enterprise_script_service/mruby/doc/limitations.md +10 -10
- data/ext/enterprise_script_service/mruby/doc/opcode.md +108 -95
- data/ext/enterprise_script_service/mruby/examples/targets/build_config_ArduinoDue.rb +2 -2
- data/ext/enterprise_script_service/mruby/examples/targets/build_config_IntelEdison.rb +2 -2
- data/ext/enterprise_script_service/mruby/examples/targets/build_config_IntelGalileo.rb +2 -2
- data/ext/enterprise_script_service/mruby/examples/targets/build_config_RX630.rb +2 -2
- data/ext/enterprise_script_service/mruby/examples/targets/build_config_chipKITMax32.rb +2 -2
- data/ext/enterprise_script_service/mruby/examples/targets/build_config_dreamcast_shelf.rb +108 -0
- data/ext/enterprise_script_service/mruby/include/mrbconf.h +10 -7
- data/ext/enterprise_script_service/mruby/include/mruby.h +12 -9
- data/ext/enterprise_script_service/mruby/include/mruby/array.h +4 -0
- data/ext/enterprise_script_service/mruby/include/mruby/boxing_nan.h +12 -2
- data/ext/enterprise_script_service/mruby/include/mruby/boxing_no.h +1 -0
- data/ext/enterprise_script_service/mruby/include/mruby/boxing_word.h +26 -30
- data/ext/enterprise_script_service/mruby/include/mruby/class.h +7 -0
- data/ext/enterprise_script_service/mruby/include/mruby/common.h +10 -0
- data/ext/enterprise_script_service/mruby/include/mruby/compile.h +12 -3
- data/ext/enterprise_script_service/mruby/include/mruby/dump.h +1 -17
- data/ext/enterprise_script_service/mruby/include/mruby/irep.h +10 -0
- data/ext/enterprise_script_service/mruby/include/mruby/istruct.h +4 -1
- data/ext/enterprise_script_service/mruby/include/mruby/khash.h +23 -5
- data/ext/enterprise_script_service/mruby/include/mruby/numeric.h +1 -0
- data/ext/enterprise_script_service/mruby/include/mruby/ops.h +3 -2
- data/ext/enterprise_script_service/mruby/include/mruby/string.h +3 -2
- data/ext/enterprise_script_service/mruby/include/mruby/value.h +9 -16
- data/ext/enterprise_script_service/mruby/include/mruby/version.h +4 -4
- data/ext/enterprise_script_service/mruby/lib/mruby-core-ext.rb +1 -20
- data/ext/enterprise_script_service/mruby/lib/mruby/build.rb +5 -33
- data/ext/enterprise_script_service/mruby/lib/mruby/build/command.rb +43 -62
- data/ext/enterprise_script_service/mruby/lib/mruby/build/load_gems.rb +8 -9
- data/ext/enterprise_script_service/mruby/lib/mruby/gem.rb +10 -1
- data/ext/enterprise_script_service/mruby/lib/mruby/source.rb +3 -1
- data/ext/enterprise_script_service/mruby/minirake +2 -621
- data/ext/enterprise_script_service/mruby/mrbgems/default.gembox +7 -0
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-array-ext/mrblib/array.rb +0 -31
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-array-ext/test/array.rb +0 -13
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-config/mrbgem.rake +6 -3
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-debugger/bintest/print.rb +19 -17
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c +0 -1
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h +5 -1
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c +5 -1
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mrbc/tools/mrbc/mrbc.c +9 -13
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mruby/mrbgem.rake +0 -1
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-mruby/tools/mruby/mruby.c +6 -2
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-bin-strip/tools/mruby-strip/mruby-strip.c +6 -2
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-class-ext/src/class.c +6 -1
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-compiler/core/codegen.c +92 -49
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-compiler/core/node.h +1 -0
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-compiler/core/parse.y +261 -34
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-compiler/core/y.tab.c +13153 -0
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-compiler/mrbgem.rake +13 -15
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-complex/mrbgem.rake +0 -3
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-complex/mrblib/complex.rb +5 -5
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-error/src/exception.c +3 -3
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-eval/src/eval.c +2 -213
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-eval/test/eval.rb +21 -0
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c +1 -3
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/README.md +1 -0
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/include/mruby/ext/io.h +40 -8
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/mrbgem.rake +3 -9
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/mrblib/file.rb +33 -33
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/mrblib/file_constants.rb +0 -16
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/mrblib/io.rb +7 -12
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/src/file.c +153 -13
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/src/file_test.c +9 -15
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/src/io.c +335 -138
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/test/file.rb +34 -12
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/test/io.rb +32 -0
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-io/test/mruby_io_test.c +60 -44
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-kernel-ext/test/kernel.rb +37 -9
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-math/test/math.rb +113 -6
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-metaprog/src/metaprog.c +37 -28
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-metaprog/test/metaprog.rb +9 -0
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-method/src/method.c +1 -1
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-object-ext/src/object.c +3 -12
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-pack/README.md +1 -0
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-pack/mrbgem.rake +1 -1
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-pack/src/pack.c +113 -10
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-print/src/print.c +5 -1
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-proc-ext/src/proc.c +2 -2
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-rational/src/rational.c +9 -9
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-sleep/mrbgem.rake +1 -1
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-sleep/src/mrb_sleep.c +2 -1
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-socket/README.md +1 -0
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-socket/mrbgem.rake +2 -2
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-socket/src/socket.c +1 -1
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-socket/test/sockettest.c +3 -2
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-sprintf/src/sprintf.c +61 -24
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-sprintf/test/sprintf.rb +5 -23
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-string-ext/src/string.c +3 -3
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-struct/src/struct.c +1 -1
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-symbol-ext/src/symbol.c +1 -1
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-test/mrbgem.rake +5 -9
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-test/vformat.c +149 -170
- data/ext/enterprise_script_service/mruby/mrbgems/mruby-time/src/time.c +27 -22
- data/ext/enterprise_script_service/mruby/mrblib/hash.rb +3 -3
- data/ext/enterprise_script_service/mruby/mrblib/mrblib.rake +1 -1
- data/ext/enterprise_script_service/mruby/src/array.c +12 -0
- data/ext/enterprise_script_service/mruby/src/backtrace.c +22 -65
- data/ext/enterprise_script_service/mruby/src/class.c +65 -65
- data/ext/enterprise_script_service/mruby/src/codedump.c +4 -0
- data/ext/enterprise_script_service/mruby/src/debug.c +8 -5
- data/ext/enterprise_script_service/mruby/src/dump.c +3 -65
- data/ext/enterprise_script_service/mruby/src/error.c +83 -67
- data/ext/enterprise_script_service/mruby/src/etc.c +13 -4
- data/ext/enterprise_script_service/mruby/src/fmt_fp.c +98 -22
- data/ext/enterprise_script_service/mruby/src/gc.c +15 -277
- data/ext/enterprise_script_service/mruby/src/hash.c +6 -7
- data/ext/enterprise_script_service/mruby/src/kernel.c +3 -3
- data/ext/enterprise_script_service/mruby/src/load.c +68 -46
- data/ext/enterprise_script_service/mruby/src/numeric.c +22 -10
- data/ext/enterprise_script_service/mruby/src/object.c +12 -4
- data/ext/enterprise_script_service/mruby/src/print.c +27 -4
- data/ext/enterprise_script_service/mruby/src/proc.c +21 -1
- data/ext/enterprise_script_service/mruby/src/state.c +34 -11
- data/ext/enterprise_script_service/mruby/src/string.c +137 -85
- data/ext/enterprise_script_service/mruby/src/symbol.c +12 -10
- data/ext/enterprise_script_service/mruby/src/vm.c +21 -30
- data/ext/enterprise_script_service/mruby/tasks/doc.rake +2 -2
- data/ext/enterprise_script_service/mruby/tasks/gitlab.rake +20 -23
- data/ext/enterprise_script_service/mruby/tasks/libmruby.rake +1 -1
- data/ext/enterprise_script_service/mruby/tasks/mrbgems.rake +3 -3
- data/ext/enterprise_script_service/mruby/tasks/toolchains/android.rake +48 -3
- data/ext/enterprise_script_service/mruby/tasks/toolchains/gcc.rake +4 -4
- data/ext/enterprise_script_service/mruby/tasks/toolchains/openwrt.rake +6 -6
- data/ext/enterprise_script_service/mruby/tasks/toolchains/visualcpp.rake +8 -8
- data/ext/enterprise_script_service/mruby/test/assert.rb +5 -4
- data/ext/enterprise_script_service/mruby/test/t/ensure.rb +8 -26
- data/ext/enterprise_script_service/mruby/test/t/exception.rb +5 -3
- data/ext/enterprise_script_service/mruby/test/t/kernel.rb +8 -24
- data/ext/enterprise_script_service/mruby/test/t/string.rb +36 -22
- data/ext/enterprise_script_service/mruby/test/t/syntax.rb +10 -0
- data/ext/enterprise_script_service/mruby/test/t/vformat.rb +48 -82
- data/ext/enterprise_script_service/mruby/travis_config.rb +2 -15
- data/ext/enterprise_script_service/mruby_config.rb +6 -0
- data/ext/enterprise_script_service/msgpack/.github/depends/boost.sh +56 -0
- data/ext/enterprise_script_service/msgpack/.github/workflows/coverage.yml +62 -0
- data/ext/enterprise_script_service/msgpack/.github/workflows/gha.yml +304 -0
- data/ext/enterprise_script_service/msgpack/CHANGELOG.md +23 -0
- data/ext/enterprise_script_service/msgpack/CMakeLists.txt +92 -52
- data/ext/enterprise_script_service/msgpack/Files.cmake +22 -12
- data/ext/enterprise_script_service/msgpack/QUICKSTART-C.md +26 -29
- data/ext/enterprise_script_service/msgpack/QUICKSTART-CPP.md +3 -3
- data/ext/enterprise_script_service/msgpack/README.md +4 -3
- data/ext/enterprise_script_service/msgpack/appveyor.yml +6 -2
- data/ext/enterprise_script_service/msgpack/ci/build_cmake.sh +38 -1
- data/ext/enterprise_script_service/msgpack/ci/build_cmake_embedded.sh +59 -0
- data/ext/enterprise_script_service/msgpack/cmake/CodeCoverage.cmake +55 -0
- data/ext/enterprise_script_service/msgpack/codecov.yml +36 -0
- data/ext/enterprise_script_service/msgpack/example/CMakeLists.txt +9 -5
- data/ext/enterprise_script_service/msgpack/example/boost/CMakeLists.txt +1 -1
- data/ext/enterprise_script_service/msgpack/example/boost/msgpack_variant_mapbased.cpp +2 -1
- data/ext/enterprise_script_service/msgpack/example/c/CMakeLists.txt +17 -15
- data/ext/enterprise_script_service/msgpack/example/c/boundary.c +296 -0
- data/ext/enterprise_script_service/msgpack/example/c/jsonconv.c +419 -0
- data/ext/enterprise_script_service/msgpack/example/c/simple_c.c +1 -1
- data/ext/enterprise_script_service/msgpack/example/cmake/CMakeLists.txt +17 -0
- data/ext/enterprise_script_service/msgpack/example/cpp03/CMakeLists.txt +3 -3
- data/ext/enterprise_script_service/msgpack/example/cpp03/class_intrusive.cpp +3 -2
- data/ext/enterprise_script_service/msgpack/example/cpp03/class_intrusive_map.cpp +2 -1
- data/ext/enterprise_script_service/msgpack/example/cpp03/class_non_intrusive.cpp +3 -2
- data/ext/enterprise_script_service/msgpack/example/cpp03/map_based_versionup.cpp +2 -1
- data/ext/enterprise_script_service/msgpack/example/cpp03/reuse_zone.cpp +3 -2
- data/ext/enterprise_script_service/msgpack/example/cpp11/CMakeLists.txt +2 -2
- data/ext/enterprise_script_service/msgpack/example/cpp11/container.cpp +18 -9
- data/ext/enterprise_script_service/msgpack/example/x3/CMakeLists.txt +2 -2
- data/ext/enterprise_script_service/msgpack/include/msgpack/fbuffer.h +1 -1
- data/ext/enterprise_script_service/msgpack/include/msgpack/pack.h +24 -1
- data/ext/enterprise_script_service/msgpack/include/msgpack/sysdep.h +1 -1
- data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/array_ref.hpp +5 -4
- data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/boost/optional.hpp +4 -4
- data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/cpp17/vector_byte.hpp +8 -8
- data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/map.hpp +4 -4
- data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/vector.hpp +4 -4
- data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/vector_char.hpp +8 -8
- data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/vector_unsigned_char.hpp +8 -8
- data/ext/enterprise_script_service/msgpack/include/msgpack/v1/adaptor/wstring.hpp +4 -4
- data/ext/enterprise_script_service/msgpack/include/msgpack/v1/unpack.hpp +13 -6
- data/ext/enterprise_script_service/msgpack/include/msgpack/v1/zbuffer.hpp +1 -0
- data/ext/enterprise_script_service/msgpack/include/msgpack/v2/create_object_visitor.hpp +11 -6
- data/ext/enterprise_script_service/msgpack/include/msgpack/v2/parse.hpp +0 -2
- data/ext/enterprise_script_service/msgpack/include/msgpack/v3/parse.hpp +0 -2
- data/ext/enterprise_script_service/msgpack/include/msgpack/v3/unpack.hpp +6 -6
- data/ext/enterprise_script_service/msgpack/include/msgpack/version_master.h +1 -1
- data/ext/enterprise_script_service/msgpack/include/msgpack/vrefbuffer.h +1 -1
- data/ext/enterprise_script_service/msgpack/include/msgpack/zbuffer.h +5 -4
- data/ext/enterprise_script_service/msgpack/make_file_list.sh +38 -11
- data/ext/enterprise_script_service/msgpack/msgpack-config.cmake.in +2 -5
- data/ext/enterprise_script_service/msgpack/src/objectc.c +1 -1
- data/ext/enterprise_script_service/msgpack/src/vrefbuffer.c +6 -0
- data/ext/enterprise_script_service/msgpack/test/CMakeLists.txt +86 -64
- data/ext/enterprise_script_service/msgpack/test/array_ref.cpp +20 -8
- data/ext/enterprise_script_service/msgpack/test/boost_fusion.cpp +14 -5
- data/ext/enterprise_script_service/msgpack/test/boost_optional.cpp +14 -5
- data/ext/enterprise_script_service/msgpack/test/boost_string_ref.cpp +6 -2
- data/ext/enterprise_script_service/msgpack/test/boost_string_view.cpp +6 -1
- data/ext/enterprise_script_service/msgpack/test/boost_variant.cpp +36 -16
- data/ext/enterprise_script_service/msgpack/test/buffer.cpp +4 -47
- data/ext/enterprise_script_service/msgpack/test/buffer_c.cpp +148 -0
- data/ext/enterprise_script_service/msgpack/test/carray.cpp +20 -8
- data/ext/enterprise_script_service/msgpack/test/cases.cpp +8 -4
- data/ext/enterprise_script_service/msgpack/test/convert.cpp +8 -4
- data/ext/enterprise_script_service/msgpack/test/fixint.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/fixint_c.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/fuzz_unpack_pack_fuzzer_cpp11.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/iterator_cpp11.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/json.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/limit.cpp +8 -4
- data/ext/enterprise_script_service/msgpack/test/msgpack_basic.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/msgpack_c.cpp +201 -0
- data/ext/enterprise_script_service/msgpack/test/msgpack_container.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/msgpack_cpp11.cpp +46 -35
- data/ext/enterprise_script_service/msgpack/test/msgpack_cpp17.cpp +26 -11
- data/ext/enterprise_script_service/msgpack/test/msgpack_stream.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/msgpack_tuple.cpp +4 -1
- data/ext/enterprise_script_service/msgpack/test/msgpack_vref.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/msgpack_x3_parse.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/object.cpp +4 -1
- data/ext/enterprise_script_service/msgpack/test/object_with_zone.cpp +12 -8
- data/ext/enterprise_script_service/msgpack/test/pack_unpack.cpp +30 -26
- data/ext/enterprise_script_service/msgpack/test/pack_unpack_c.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/raw.cpp +16 -12
- data/ext/enterprise_script_service/msgpack/test/reference.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/reference_cpp11.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/reference_wrapper_cpp11.cpp +10 -3
- data/ext/enterprise_script_service/msgpack/test/shared_ptr_cpp11.cpp +10 -3
- data/ext/enterprise_script_service/msgpack/test/size_equal_only.cpp +14 -5
- data/ext/enterprise_script_service/msgpack/test/streaming.cpp +8 -4
- data/ext/enterprise_script_service/msgpack/test/streaming_c.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/unique_ptr_cpp11.cpp +10 -3
- data/ext/enterprise_script_service/msgpack/test/user_class.cpp +16 -12
- data/ext/enterprise_script_service/msgpack/test/version.cpp +4 -0
- data/ext/enterprise_script_service/msgpack/test/visitor.cpp +6 -1
- data/ext/enterprise_script_service/msgpack/test/zone.cpp +4 -0
- data/lib/script_core/engine.rb +24 -5
- data/lib/script_core/executable.rb +4 -3
- data/lib/script_core/result.rb +1 -5
- data/lib/script_core/service_channel.rb +1 -0
- data/lib/script_core/version.rb +1 -1
- data/lib/tasks/script_core.rake +3 -1
- data/script_core.gemspec +2 -4
- data/spec/dummy/app/lib/script_engine.rb +65 -6
- data/spec/dummy/app/models/concerns/enum_attribute_localizable.rb +1 -1
- data/spec/dummy/bin/bundle +111 -2
- data/spec/spec_helper.rb +0 -1
- metadata +28 -1084
- data/bin/bundler +0 -17
- data/bin/pry +0 -17
- data/ext/enterprise_script_service/msgpack/.travis.yml +0 -239
- data/ext/enterprise_script_service/msgpack/external/boost/predef/.gitattributes +0 -96
- data/ext/enterprise_script_service/msgpack/external/boost/predef/.gitignore +0 -3
- data/ext/enterprise_script_service/msgpack/external/boost/predef/.project +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/predef/.pydevproject +0 -5
- data/ext/enterprise_script_service/msgpack/external/boost/predef/.travis.yml +0 -109
- data/ext/enterprise_script_service/msgpack/external/boost/predef/appveyor.yml +0 -149
- data/ext/enterprise_script_service/msgpack/external/boost/predef/build.jam +0 -6
- data/ext/enterprise_script_service/msgpack/external/boost/predef/check/predef.jam +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/predef/doc/.gitignore +0 -1
- data/ext/enterprise_script_service/msgpack/external/boost/predef/doc/build.jam +0 -100
- data/ext/enterprise_script_service/msgpack/external/boost/predef/doc/hardware_simd.qbk +0 -89
- data/ext/enterprise_script_service/msgpack/external/boost/predef/doc/history.qbk +0 -93
- data/ext/enterprise_script_service/msgpack/external/boost/predef/doc/predef.qbk +0 -734
- data/ext/enterprise_script_service/msgpack/external/boost/predef/doc/todo.qbk +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/detail/endian.hpp +0 -11
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef.h +0 -24
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture.h +0 -33
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/alpha.h +0 -59
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/arm.h +0 -80
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/blackfin.h +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/convex.h +0 -65
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/ia64.h +0 -49
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/m68k.h +0 -82
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/mips.h +0 -73
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/parisc.h +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/ppc.h +0 -72
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/ptx.h +0 -44
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/pyramid.h +0 -42
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/rs6k.h +0 -56
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/sparc.h +0 -54
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/superh.h +0 -67
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/sys370.h +0 -43
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/sys390.h +0 -43
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/x86.h +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/x86/32.h +0 -87
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/x86/64.h +0 -50
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/architecture/z.h +0 -42
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler.h +0 -44
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/borland.h +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/clang.h +0 -56
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/comeau.h +0 -61
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/compaq.h +0 -66
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/diab.h +0 -56
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/digitalmars.h +0 -56
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/dignus.h +0 -56
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/edg.h +0 -56
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/ekopath.h +0 -57
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/gcc.h +0 -68
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/gcc_xml.h +0 -53
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/greenhills.h +0 -66
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/hp_acc.h +0 -61
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/iar.h +0 -56
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/ibm.h +0 -72
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/intel.h +0 -79
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/kai.h +0 -56
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/llvm.h +0 -57
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/metaware.h +0 -53
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/metrowerks.h +0 -77
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/microtec.h +0 -53
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/mpw.h +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/nvcc.h +0 -60
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/palm.h +0 -56
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/pgi.h +0 -60
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/sgi_mipspro.h +0 -66
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/sunpro.h +0 -76
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/tendra.h +0 -53
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/visualc.h +0 -105
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/compiler/watcom.h +0 -56
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/detail/_cassert.h +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/detail/_exception.h +0 -15
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/detail/comp_detected.h +0 -10
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/detail/endian_compat.h +0 -26
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/detail/os_detected.h +0 -10
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/detail/platform_detected.h +0 -10
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/detail/test.h +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/detail/test_def.h +0 -71
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/hardware.h +0 -16
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/hardware/simd.h +0 -119
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/hardware/simd/arm.h +0 -59
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/hardware/simd/arm/versions.h +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/hardware/simd/ppc.h +0 -69
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/hardware/simd/ppc/versions.h +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/hardware/simd/x86.h +0 -123
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/hardware/simd/x86/versions.h +0 -129
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/hardware/simd/x86_amd.h +0 -87
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/hardware/simd/x86_amd/versions.h +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/language.h +0 -18
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/language/cuda.h +0 -52
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/language/objc.h +0 -42
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/language/stdc.h +0 -53
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/language/stdcpp.h +0 -121
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library.h +0 -16
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/c.h +0 -21
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/c/_prefix.h +0 -13
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/c/cloudabi.h +0 -53
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/c/gnu.h +0 -61
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/c/uc.h +0 -47
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/c/vms.h +0 -47
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/c/zos.h +0 -56
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/std.h +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/std/_prefix.h +0 -23
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/std/cxx.h +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/std/dinkumware.h +0 -52
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/std/libcomo.h +0 -47
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/std/modena.h +0 -45
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/std/msl.h +0 -53
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/std/roguewave.h +0 -56
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/std/sgi.h +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/std/stdcpp3.h +0 -53
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/std/stlport.h +0 -59
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/library/std/vacpp.h +0 -44
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/make.h +0 -97
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os.h +0 -33
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/aix.h +0 -66
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/amigaos.h +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/android.h +0 -45
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/beos.h +0 -45
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/bsd.h +0 -103
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/bsd/bsdi.h +0 -48
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/bsd/dragonfly.h +0 -50
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/bsd/free.h +0 -67
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/bsd/net.h +0 -84
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/bsd/open.h +0 -251
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/cygwin.h +0 -45
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/haiku.h +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/hpux.h +0 -47
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/ios.h +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/irix.h +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/linux.h +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/macos.h +0 -65
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/os400.h +0 -45
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/qnxnto.h +0 -59
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/solaris.h +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/unix.h +0 -76
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/vms.h +0 -52
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/os/windows.h +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/other.h +0 -16
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/other/endian.h +0 -203
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/other/workaround.h +0 -87
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/platform.h +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/platform/cloudabi.h +0 -43
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/platform/ios.h +0 -58
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/platform/mingw.h +0 -69
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/platform/mingw32.h +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/platform/mingw64.h +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/platform/windows_desktop.h +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/platform/windows_phone.h +0 -48
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/platform/windows_runtime.h +0 -53
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/platform/windows_server.h +0 -47
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/platform/windows_store.h +0 -50
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/platform/windows_system.h +0 -47
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/platform/windows_uwp.h +0 -60
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/version.h +0 -15
- data/ext/enterprise_script_service/msgpack/external/boost/predef/include/boost/predef/version_number.h +0 -72
- data/ext/enterprise_script_service/msgpack/external/boost/predef/index.html +0 -14
- data/ext/enterprise_script_service/msgpack/external/boost/predef/meta/libraries.json +0 -14
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/.gitignore +0 -3
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/build.jam +0 -80
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/check_value.cpp +0 -26
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/info_as_c.c +0 -7
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/info_as_cpp.cpp +0 -7
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/info_as_objc.m +0 -7
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/info_as_objcpp.mm +0 -7
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/macos_endian.c +0 -21
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/macos_vs_bsd.c +0 -19
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/make.cpp +0 -94
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/platform_windows.cpp +0 -177
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/predef_info.h +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/tested_at.cpp +0 -62
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/tested_at_outdated.cpp +0 -18
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/version.cpp +0 -83
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/workaround.cpp +0 -62
- data/ext/enterprise_script_service/msgpack/external/boost/predef/test/workaround_strict_config.cpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/check/build.jam +0 -9
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/check/predef.jam +0 -202
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/check/predef_check.h +0 -98
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/check/predef_check_as_c.c +0 -7
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/check/predef_check_as_cpp.cpp +0 -7
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/check/predef_check_as_objc.m +0 -7
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/check/predef_check_as_objcpp.mm +0 -7
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/check/predef_check_cc.h +0 -19
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/check/predef_check_cc_as_c.c +0 -7
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/check/predef_check_cc_as_cpp.cpp +0 -7
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/check/predef_check_cc_as_objc.m +0 -7
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/check/predef_check_cc_as_objcpp.mm +0 -7
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/ci/build_log.py +0 -428
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/ci/common.py +0 -878
- data/ext/enterprise_script_service/msgpack/external/boost/predef/tools/ci/library_test.py +0 -198
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/.gitattributes +0 -96
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/.travis.yml +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/appveyor.yml +0 -36
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/AppendixA-AnIntroductiontoPreprocessorMetaprogramming.html +0 -2494
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/acknowledgements.html +0 -58
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/bibliography.html +0 -58
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/contents.html +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/data.html +0 -27
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/data/arrays.html +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/data/lists.html +0 -42
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/data/sequences.html +0 -60
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/data/tuples.html +0 -42
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/examples.html +0 -27
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/examples/array_arithmetic.c +0 -196
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/examples/catch_builtin.cpp +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/examples/delay.c +0 -95
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/examples/duffs_device.c +0 -61
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/examples/is_integral.cpp +0 -49
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/examples/linear_fib.c +0 -91
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers.html +0 -249
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/arithmetic.html +0 -36
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/arithmetic/add.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/arithmetic/dec.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/arithmetic/div.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/arithmetic/inc.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/arithmetic/mod.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/arithmetic/mul.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/arithmetic/sub.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array.html +0 -43
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/data.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/elem.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/enum.html +0 -24
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/insert.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/pop_back.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/pop_front.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/push_back.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/push_front.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/remove.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/replace.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/reverse.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/size.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/to_list.html +0 -24
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/to_seq.html +0 -24
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/array/to_tuple.html +0 -24
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/assert_msg.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/cat.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/comma.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/comma_if.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/comparison.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/comparison/equal.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/comparison/greater.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/comparison/greater_equal.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/comparison/less.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/comparison/less_equal.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/comparison/not_equal.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/config/limits.html +0 -44
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/config/variadics.html +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/control.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/control/deduce_d.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/control/expr_if.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/control/expr_iif.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/control/if.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/control/iif.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/control/while.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/debug.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/debug/assert.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/debug/line.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/dec.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/empty.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/enum.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/enum_params.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/enum_shifted.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/enum_shifted_params.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/epwad.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/epwd.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/expand.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/expr_if.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/facilities.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/facilities/apply.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/facilities/empty.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/facilities/expand.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/facilities/identity.html +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/facilities/intercept.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/facilities/overload.html +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/for.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/identity.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/if.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/inc.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/iterate.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/iteration.html +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/iteration/iterate.html +0 -43
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/iteration/local.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/iteration/self.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/library.html +0 -26
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/limits.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list.html +0 -47
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/adt.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/append.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/at.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/cat.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/enum.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/filter.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/first_n.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/fold_left.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/fold_right.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/for_each.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/for_each_i.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/for_each_product.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/rest_n.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/reverse.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/size.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/to_array.html +0 -29
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/to_seq.html +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/to_tuple.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/list/transform.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/logical.html +0 -40
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/logical/and.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/logical/bitand.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/logical/bitnor.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/logical/bitor.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/logical/bitxor.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/logical/bool.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/logical/compl.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/logical/nor.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/logical/not.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/logical/or.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/logical/xor.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/max.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/min.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/preprocessor.html +0 -26
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/punctuation.html +0 -33
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/punctuation/comma.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/punctuation/comma_if.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/punctuation/is_begin_parens.html +0 -26
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/punctuation/paren.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/punctuation/paren_if.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/punctuation/remove_parens.html +0 -26
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repeat.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repeat_2nd.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repeat_3rd.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repeat_from_to.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repeat_from_to_2nd.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repeat_from_to_3rd.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition.html +0 -44
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/deduce_r.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/deduce_z.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/enum.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/enum_binary_params.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/enum_params.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/enum_shifted.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/enum_shifted_params.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/enum_trailing.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/enum_trailing_params.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/epwad.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/epwd.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/esbp.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/etbp.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/for.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/repeat.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/repetition/repeat_from_to.html +0 -36
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/selection.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/selection/max.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/selection/min.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq.html +0 -86
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/cat.html +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/elem.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/enum.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/filter.html +0 -37
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/first_n.html +0 -36
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/fold_left.html +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/fold_right.html +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/for_each.html +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/for_each_i.html +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/for_each_product.html +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/insert.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/pop_back.html +0 -36
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/pop_front.html +0 -36
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/push_back.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/push_front.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/remove.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/replace.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/rest_n.html +0 -36
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/reverse.html +0 -37
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/seq.html +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/size.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/subseq.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/to_array.html +0 -36
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/to_list.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/to_tuple.html +0 -36
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/transform.html +0 -37
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/seq/variadic_seq_to_seq.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/slot.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/slot/counter.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/slot/slot.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/stringize.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple.html +0 -59
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/eat.html +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/elem.html +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/enum.html +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/insert.html +0 -27
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/pop_back.html +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/pop_front.html +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/push_back.html +0 -26
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/push_front.html +0 -26
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/rem.html +0 -27
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/remove.html +0 -27
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/replace.html +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/reverse.html +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/size.html +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/to_array.html +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/to_list.html +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/tuple/to_seq.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/variadic.html +0 -33
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/variadic/elem.html +0 -29
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/variadic/size.html +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/variadic/to_array.html +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/variadic/to_list.html +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/variadic/to_seq.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/variadic/to_tuple.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/while.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/headers/wstringize.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/index.html +0 -23
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/miscellanea.html +0 -24
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref.html +0 -319
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/add.html +0 -68
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/add_d.html +0 -90
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/and.html +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/apply.html +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_data.html +0 -49
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_elem.html +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_enum.html +0 -37
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_insert.html +0 -71
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_insert_d.html +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_pop_back.html +0 -59
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_pop_back_z.html +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_pop_front.html +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_pop_front_z.html +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_push_back.html +0 -49
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_push_front.html +0 -49
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_remove.html +0 -60
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_remove_d.html +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_replace.html +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_replace_d.html +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_reverse.html +0 -45
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_size.html +0 -45
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_to_list.html +0 -41
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_to_seq.html +0 -37
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/array_to_tuple.html +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/assert.html +0 -114
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/assert_msg.html +0 -66
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/assign_slot.html +0 -61
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/bitand.html +0 -65
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/bitnor.html +0 -65
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/bitor.html +0 -65
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/bitxor.html +0 -66
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/bool.html +0 -54
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/cat.html +0 -57
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/comma.html +0 -43
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/comma_if.html +0 -60
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/compl.html +0 -58
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/config_extended_line_info.html +0 -54
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/counter.html +0 -58
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/dec.html +0 -54
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/deduce_d.html +0 -82
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/deduce_r.html +0 -48
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/deduce_z.html +0 -48
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/div.html +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/div_d.html +0 -85
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/empty.html +0 -47
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum.html +0 -80
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_binary_params.html +0 -76
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_binary_params_z.html +0 -93
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_params.html +0 -69
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_params_with_a_default.html +0 -83
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_params_with_defaults.html +0 -84
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_params_z.html +0 -82
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_shifted.html +0 -82
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_shifted_params.html +0 -73
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_shifted_params_z.html +0 -79
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_shifted_z.html +0 -93
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_trailing.html +0 -83
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_trailing_params.html +0 -66
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_trailing_params_z.html +0 -81
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_trailing_z.html +0 -96
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/enum_z.html +0 -96
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/equal.html +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/equal_d.html +0 -69
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/esbp.html +0 -65
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/esbpz.html +0 -67
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/etbp.html +0 -83
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/etbpz.html +0 -67
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/expand.html +0 -67
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/expr_if.html +0 -70
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/expr_iif.html +0 -67
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/filename_x.html +0 -52
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/for.html +0 -105
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/for_r.html +0 -148
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/for_r_macros.html +0 -44
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/frame_finish.html +0 -42
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/frame_flags.html +0 -42
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/frame_iteration.html +0 -73
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/frame_start.html +0 -42
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/greater.html +0 -65
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/greater_d.html +0 -69
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/greater_equal.html +0 -65
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/greater_equal_d.html +0 -69
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/identity.html +0 -57
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/identity_n.html +0 -58
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/if.html +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/iif.html +0 -66
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/inc.html +0 -54
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/include_self.html +0 -101
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/indirect_self.html +0 -45
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/intercept.html +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/is_begin_parens.html +0 -47
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/is_iterating.html +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/is_selfish.html +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/iterate.html +0 -83
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/iteration.html +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/iteration_depth.html +0 -73
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/iteration_finish.html +0 -57
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/iteration_flags.html +0 -68
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/iteration_limits.html +0 -59
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/iteration_params_x.html +0 -77
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/iteration_start.html +0 -57
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/less.html +0 -65
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/less_d.html +0 -70
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/less_equal.html +0 -65
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/less_equal_d.html +0 -70
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/limit_dim.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/limit_for.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/limit_iteration.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/limit_iteration_dim.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/limit_mag.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/limit_repeat.html +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/limit_seq.html +0 -41
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/limit_slot_count.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/limit_slot_sig.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/limit_tuple.html +0 -33
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/limit_variadic.html +0 -24
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/limit_while.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/line.html +0 -112
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_append.html +0 -69
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_append_d.html +0 -96
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_at.html +0 -61
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_at_d.html +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_cat.html +0 -58
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_cat_d.html +0 -67
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_cons.html +0 -87
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_enum.html +0 -62
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_enum_r.html +0 -69
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_filter.html +0 -76
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_filter_d.html +0 -86
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_first.html +0 -62
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_first_n.html +0 -62
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_first_n_d.html +0 -71
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_fold_left.html +0 -75
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_fold_left_2nd.html +0 -75
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_fold_left_2nd_d.html +0 -86
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_fold_left_d.html +0 -81
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_fold_left_d_old.html +0 -86
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_fold_right.html +0 -79
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_fold_right_2nd.html +0 -79
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_fold_right_2nd_d.html +0 -86
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_fold_right_d.html +0 -81
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_fold_right_d_old.html +0 -90
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_for_each.html +0 -75
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_for_each_i.html +0 -75
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_for_each_i_r.html +0 -82
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_for_each_product.html +0 -86
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_for_each_product_r.html +0 -118
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_for_each_r.html +0 -81
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_is_cons.html +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_is_nil.html +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_nil.html +0 -68
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_rest.html +0 -62
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_rest_n.html +0 -62
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_rest_n_d.html +0 -71
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_reverse.html +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_reverse_d.html +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_size.html +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_size_d.html +0 -67
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_to_array.html +0 -47
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_to_array_d.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_to_seq.html +0 -44
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_to_seq_r.html +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_to_tuple.html +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_to_tuple_r.html +0 -62
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_transform.html +0 -78
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/list_transform_d.html +0 -86
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/local_iterate.html +0 -62
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/local_limits.html +0 -80
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/local_macro.html +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/lparen.html +0 -52
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/lparen_if.html +0 -61
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/max.html +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/max_d.html +0 -70
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/min.html +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/min_d.html +0 -70
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/mod.html +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/mod_d.html +0 -75
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/mul.html +0 -68
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/mul_d.html +0 -91
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/nil.html +0 -41
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/nor.html +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/not.html +0 -59
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/not_equal.html +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/not_equal_d.html +0 -69
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/or.html +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/overload.html +0 -58
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/relative_finish.html +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/relative_flags.html +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/relative_iteration.html +0 -101
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/relative_start.html +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/remove_parens.html +0 -44
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/repeat.html +0 -80
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/repeat_1st.html +0 -82
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/repeat_2nd.html +0 -82
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/repeat_3rd.html +0 -82
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/repeat_from_to.html +0 -102
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/repeat_from_to_1st.html +0 -91
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/repeat_from_to_2nd.html +0 -91
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/repeat_from_to_3rd.html +0 -91
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/repeat_from_to_d.html +0 -83
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/repeat_from_to_d_z.html +0 -84
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/repeat_from_to_z.html +0 -105
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/repeat_z.html +0 -92
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/repeat_z_macros.html +0 -45
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/rparen.html +0 -53
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/rparen_if.html +0 -61
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_cat.html +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_cat_s.html +0 -60
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_elem.html +0 -59
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_enum.html +0 -66
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_filter.html +0 -93
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_filter_s.html +0 -79
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_first_n.html +0 -67
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_fold_left.html +0 -90
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_fold_left_s.html +0 -96
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_fold_right.html +0 -92
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_fold_right_s.html +0 -97
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_for_each.html +0 -90
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_for_each_i.html +0 -91
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_for_each_i_r.html +0 -78
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_for_each_product.html +0 -100
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_for_each_product_r.html +0 -81
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_for_each_r.html +0 -77
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_head.html +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_insert.html +0 -70
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_nil.html +0 -81
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_pop_back.html +0 -68
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_pop_front.html +0 -68
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_push_back.html +0 -76
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_push_front.html +0 -78
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_remove.html +0 -66
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_replace.html +0 -71
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_rest_n.html +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_reverse.html +0 -68
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_reverse_s.html +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_size.html +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_subseq.html +0 -69
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_tail.html +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_to_array.html +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_to_list.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_to_tuple.html +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_transform.html +0 -93
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/seq_transform_s.html +0 -79
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/slot.html +0 -60
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/stringize.html +0 -50
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/sub.html +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/sub_d.html +0 -85
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_eat.html +0 -58
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_elem.html +0 -65
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_enum.html +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_insert.html +0 -54
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_insert_d.html +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_pop_back.html +0 -48
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_pop_back_z.html +0 -40
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_pop_front.html +0 -47
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_pop_front_z.html +0 -40
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_push_back.html +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_push_front.html +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_rem.html +0 -60
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_rem_ctor.html +0 -61
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_remove.html +0 -50
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_remove_d.html +0 -41
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_replace.html +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_replace_d.html +0 -42
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_reverse.html +0 -61
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_size.html +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_to_array.html +0 -50
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_to_list.html +0 -60
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/tuple_to_seq.html +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/update_counter.html +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/value.html +0 -37
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/variadic_elem.html +0 -42
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/variadic_seq_to_seq.html +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/variadic_size.html +0 -33
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/variadic_to_array.html +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/variadic_to_list.html +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/variadic_to_seq.html +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/variadic_to_tuple.html +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/variadics.html +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/while.html +0 -116
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/while_d.html +0 -117
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/while_d_macros.html +0 -89
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/wstringize.html +0 -49
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/ref/xor.html +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/styles.css +0 -87
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/syntax.html +0 -307
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/terms.html +0 -23
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/terms/evaluated.html +0 -27
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/terms/named_external.html +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/title.html +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/top.html +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/topics.html +0 -27
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/topics/evaluated_slots.html +0 -157
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/topics/file_iteration.html +0 -1044
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/topics/incompatible.html +0 -140
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/topics/local_iteration.html +0 -156
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/topics/motivation.html +0 -119
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/topics/problems.html +0 -135
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/topics/reentrancy.html +0 -298
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/topics/techniques.html +0 -350
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/doc/topics/variadic_macros.html +0 -262
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor.hpp +0 -19
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/arithmetic.hpp +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/arithmetic/add.hpp +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/arithmetic/dec.hpp +0 -289
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/arithmetic/detail/div_base.hpp +0 -61
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/arithmetic/div.hpp +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/arithmetic/inc.hpp +0 -288
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/arithmetic/mod.hpp +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/arithmetic/mul.hpp +0 -53
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/arithmetic/sub.hpp +0 -50
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array.hpp +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/data.hpp +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/detail/get_data.hpp +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/elem.hpp +0 -29
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/enum.hpp +0 -33
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/insert.hpp +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/pop_back.hpp +0 -37
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/pop_front.hpp +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/push_back.hpp +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/push_front.hpp +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/remove.hpp +0 -54
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/replace.hpp +0 -49
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/reverse.hpp +0 -29
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/size.hpp +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/to_list.hpp +0 -47
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/to_seq.hpp +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/array/to_tuple.hpp +0 -33
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/assert_msg.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/cat.hpp +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/comma.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/comma_if.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/comparison.hpp +0 -24
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/comparison/equal.hpp +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/comparison/greater.hpp +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/comparison/greater_equal.hpp +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/comparison/less.hpp +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/comparison/less_equal.hpp +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/comparison/not_equal.hpp +0 -814
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/config/config.hpp +0 -106
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/config/limits.hpp +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/control.hpp +0 -22
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/control/deduce_d.hpp +0 -22
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/control/detail/dmc/while.hpp +0 -536
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/control/detail/edg/while.hpp +0 -534
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/control/detail/msvc/while.hpp +0 -277
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/control/detail/while.hpp +0 -536
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/control/expr_if.hpp +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/control/expr_iif.hpp +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/control/if.hpp +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/control/iif.hpp +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/control/while.hpp +0 -312
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/debug.hpp +0 -18
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/debug/assert.hpp +0 -44
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/debug/error.hpp +0 -33
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/debug/line.hpp +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/dec.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/detail/auto_rec.hpp +0 -293
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/detail/check.hpp +0 -48
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/detail/dmc/auto_rec.hpp +0 -286
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/detail/is_binary.hpp +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/detail/is_nullary.hpp +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/detail/is_unary.hpp +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/detail/null.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/detail/split.hpp +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/empty.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/enum.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/enum_params.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/enum_params_with_a_default.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/enum_params_with_defaults.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/enum_shifted.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/enum_shifted_params.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/expand.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/expr_if.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/facilities.hpp +0 -23
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/facilities/apply.hpp +0 -34
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/facilities/detail/is_empty.hpp +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/facilities/empty.hpp +0 -23
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/facilities/expand.hpp +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/facilities/identity.hpp +0 -27
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/facilities/intercept.hpp +0 -277
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/facilities/is_1.hpp +0 -23
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/facilities/is_empty.hpp +0 -56
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/facilities/is_empty_or_1.hpp +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/facilities/is_empty_variadic.hpp +0 -57
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/facilities/overload.hpp +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/for.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/identity.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/if.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/inc.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iterate.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration.hpp +0 -19
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/bounds/lower1.hpp +0 -99
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/bounds/lower2.hpp +0 -99
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/bounds/lower3.hpp +0 -99
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/bounds/lower4.hpp +0 -99
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/bounds/lower5.hpp +0 -99
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/bounds/upper1.hpp +0 -99
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/bounds/upper2.hpp +0 -99
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/bounds/upper3.hpp +0 -99
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/bounds/upper4.hpp +0 -99
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/bounds/upper5.hpp +0 -99
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/finish.hpp +0 -99
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/iter/forward1.hpp +0 -1342
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/iter/forward2.hpp +0 -1338
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/iter/forward3.hpp +0 -1338
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/iter/forward4.hpp +0 -1338
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/iter/forward5.hpp +0 -1338
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/iter/reverse1.hpp +0 -1296
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/iter/reverse2.hpp +0 -1296
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/iter/reverse3.hpp +0 -1296
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/iter/reverse4.hpp +0 -1296
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/iter/reverse5.hpp +0 -1296
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/local.hpp +0 -812
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/rlocal.hpp +0 -782
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/self.hpp +0 -21
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/detail/start.hpp +0 -99
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/iterate.hpp +0 -82
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/local.hpp +0 -26
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/iteration/self.hpp +0 -19
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/library.hpp +0 -37
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/limits.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list.hpp +0 -37
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/adt.hpp +0 -73
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/append.hpp +0 -40
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/at.hpp +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/cat.hpp +0 -42
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/detail/dmc/fold_left.hpp +0 -279
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/detail/edg/fold_left.hpp +0 -536
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/detail/edg/fold_right.hpp +0 -794
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/detail/fold_left.hpp +0 -279
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/detail/fold_right.hpp +0 -277
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/enum.hpp +0 -41
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/filter.hpp +0 -54
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/first_n.hpp +0 -58
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/fold_left.hpp +0 -303
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/fold_right.hpp +0 -40
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/for_each.hpp +0 -49
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/for_each_i.hpp +0 -65
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/for_each_product.hpp +0 -141
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/rest_n.hpp +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/reverse.hpp +0 -40
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/size.hpp +0 -58
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/to_array.hpp +0 -155
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/to_seq.hpp +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/to_tuple.hpp +0 -61
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/list/transform.hpp +0 -49
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/logical.hpp +0 -29
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/logical/and.hpp +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/logical/bitand.hpp +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/logical/bitnor.hpp +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/logical/bitor.hpp +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/logical/bitxor.hpp +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/logical/bool.hpp +0 -288
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/logical/compl.hpp +0 -36
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/logical/nor.hpp +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/logical/not.hpp +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/logical/or.hpp +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/logical/xor.hpp +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/max.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/min.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/punctuation.hpp +0 -22
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/punctuation/comma.hpp +0 -21
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/punctuation/comma_if.hpp +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/punctuation/detail/is_begin_parens.hpp +0 -48
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/punctuation/is_begin_parens.hpp +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/punctuation/paren.hpp +0 -23
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/punctuation/paren_if.hpp +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/punctuation/remove_parens.hpp +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repeat.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repeat_2nd.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repeat_3rd.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repeat_from_to.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repeat_from_to_2nd.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repeat_from_to_3rd.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition.hpp +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/deduce_r.hpp +0 -22
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/deduce_z.hpp +0 -22
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/detail/dmc/for.hpp +0 -536
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/detail/edg/for.hpp +0 -534
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/detail/for.hpp +0 -536
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/detail/msvc/for.hpp +0 -277
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/enum.hpp +0 -66
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/enum_binary_params.hpp +0 -54
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/enum_params.hpp +0 -41
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/enum_params_with_a_default.hpp +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/enum_params_with_defaults.hpp +0 -24
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/enum_shifted.hpp +0 -68
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/enum_shifted_binary_params.hpp +0 -51
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/enum_shifted_params.hpp +0 -44
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/enum_trailing.hpp +0 -63
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/enum_trailing_binary_params.hpp +0 -53
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/enum_trailing_params.hpp +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/for.hpp +0 -324
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/repeat.hpp +0 -825
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/repetition/repeat_from_to.hpp +0 -87
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/selection.hpp +0 -18
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/selection/max.hpp +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/selection/min.hpp +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq.hpp +0 -44
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/cat.hpp +0 -49
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/detail/binary_transform.hpp +0 -47
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/detail/is_empty.hpp +0 -49
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/detail/split.hpp +0 -284
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/detail/to_list_msvc.hpp +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/elem.hpp +0 -304
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/enum.hpp +0 -288
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/filter.hpp +0 -54
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/first_n.hpp +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/fold_left.hpp +0 -1070
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/fold_right.hpp +0 -288
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/for_each.hpp +0 -107
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/for_each_i.hpp +0 -109
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/for_each_product.hpp +0 -126
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/insert.hpp +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/pop_back.hpp +0 -29
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/pop_front.hpp +0 -27
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/push_back.hpp +0 -19
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/push_front.hpp +0 -19
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/remove.hpp +0 -29
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/replace.hpp +0 -45
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/rest_n.hpp +0 -46
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/reverse.hpp +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/seq.hpp +0 -44
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/size.hpp +0 -548
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/subseq.hpp +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/to_array.hpp +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/to_list.hpp +0 -41
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/to_tuple.hpp +0 -27
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/transform.hpp +0 -48
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/seq/variadic_seq_to_seq.hpp +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/slot.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/slot/counter.hpp +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/slot/detail/counter.hpp +0 -269
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/slot/detail/def.hpp +0 -49
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/slot/detail/shared.hpp +0 -247
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/slot/detail/slot1.hpp +0 -267
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/slot/detail/slot2.hpp +0 -267
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/slot/detail/slot3.hpp +0 -267
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/slot/detail/slot4.hpp +0 -267
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/slot/detail/slot5.hpp +0 -267
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/slot/slot.hpp +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/stringize.hpp +0 -33
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple.hpp +0 -35
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/detail/is_single_return.hpp +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/eat.hpp +0 -115
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/elem.hpp +0 -201
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/enum.hpp +0 -22
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/insert.hpp +0 -37
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/pop_back.hpp +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/pop_front.hpp +0 -65
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/push_back.hpp +0 -31
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/push_front.hpp +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/rem.hpp +0 -149
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/remove.hpp +0 -64
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/replace.hpp +0 -37
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/reverse.hpp +0 -117
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/size.hpp +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/to_array.hpp +0 -39
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/to_list.hpp +0 -118
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/tuple/to_seq.hpp +0 -119
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/variadic.hpp +0 -23
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/variadic/detail/is_single_return.hpp +0 -28
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/variadic/elem.hpp +0 -94
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/variadic/size.hpp +0 -30
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/variadic/to_array.hpp +0 -32
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/variadic/to_list.hpp +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/variadic/to_seq.hpp +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/variadic/to_tuple.hpp +0 -24
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/while.hpp +0 -17
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/include/boost/preprocessor/wstringize.hpp +0 -29
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/index.html +0 -18
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/meta/libraries.json +0 -15
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/Jamfile.v2 +0 -252
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/arithmetic.c +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/arithmetic.cpp +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/arithmetic.cxx +0 -82
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/array.c +0 -14
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/array.cpp +0 -14
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/array.cxx +0 -192
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/comparison.c +0 -13
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/comparison.cpp +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/comparison.cxx +0 -45
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/config_info.cpp +0 -93
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/control.c +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/control.cpp +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/control.cxx +0 -40
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/debug.c +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/debug.cpp +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/debug.cxx +0 -21
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/facilities.c +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/facilities.cpp +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/facilities.cxx +0 -55
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/isempty.c +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/isempty.cpp +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/isempty.cxx +0 -145
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/isempty_variadic_standard_failure.c +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/isempty_variadic_standard_failure.cpp +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/isempty_variadic_standard_failure.cxx +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/isempty_variadic_standard_failure2.c +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/isempty_variadic_standard_failure2.cpp +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/isempty_variadic_standard_failure2.cxx +0 -25
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/iteration.cpp +0 -33
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/iteration.h +0 -62
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/list.c +0 -14
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/list.cpp +0 -14
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/list.cxx +0 -91
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/logical.c +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/logical.cpp +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/logical.cxx +0 -59
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/punctuation.c +0 -14
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/punctuation.cpp +0 -14
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/punctuation.cxx +0 -54
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/repetition.cpp +0 -50
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/selection.c +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/selection.cpp +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/selection.cxx +0 -21
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/seq.c +0 -14
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/seq.cpp +0 -14
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/seq.cxx +0 -222
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/slot.c +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/slot.cpp +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/slot.cxx +0 -53
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/test.h +0 -37
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/tuple.c +0 -14
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/tuple.cpp +0 -14
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/tuple.cxx +0 -266
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/tuple_elem_bug_test.cxx +0 -38
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/variadic.c +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/variadic.cpp +0 -12
- data/ext/enterprise_script_service/msgpack/external/boost/preprocessor/test/variadic.cxx +0 -56
@@ -0,0 +1,24 @@
|
|
1
|
+
name: CIFuzz
|
2
|
+
on: [pull_request]
|
3
|
+
jobs:
|
4
|
+
Fuzzing:
|
5
|
+
runs-on: ubuntu-latest
|
6
|
+
steps:
|
7
|
+
- name: Build Fuzzers
|
8
|
+
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
|
9
|
+
with:
|
10
|
+
oss-fuzz-project-name: 'mruby'
|
11
|
+
dry-run: false
|
12
|
+
- name: Run Fuzzers
|
13
|
+
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
|
14
|
+
with:
|
15
|
+
oss-fuzz-project-name: 'mruby'
|
16
|
+
fuzz-seconds: 600
|
17
|
+
dry-run: false
|
18
|
+
- name: Upload Crash
|
19
|
+
uses: actions/upload-artifact@v1
|
20
|
+
if: failure()
|
21
|
+
with:
|
22
|
+
name: artifacts
|
23
|
+
path: ./out/artifacts
|
24
|
+
|
@@ -11,7 +11,7 @@ pretest:
|
|
11
11
|
CC: gcc-4.7
|
12
12
|
CXX: g++-4.7
|
13
13
|
LD: gcc-4.7
|
14
|
-
script:
|
14
|
+
script: rake --verbose all test
|
15
15
|
Test gcc-4.7 32bit:
|
16
16
|
stage: test
|
17
17
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -19,9 +19,9 @@ Test gcc-4.7 32bit:
|
|
19
19
|
CC: gcc-4.7
|
20
20
|
CXX: g++-4.7
|
21
21
|
LD: gcc-4.7
|
22
|
-
CFLAGS: "-m32
|
22
|
+
CFLAGS: "-m32 "
|
23
23
|
LDFLAGS: "-m32"
|
24
|
-
script: env;
|
24
|
+
script: env; rake --verbose all test
|
25
25
|
Test gcc-4.7 32bit_utf8:
|
26
26
|
stage: test
|
27
27
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -29,9 +29,9 @@ Test gcc-4.7 32bit_utf8:
|
|
29
29
|
CC: gcc-4.7
|
30
30
|
CXX: g++-4.7
|
31
31
|
LD: gcc-4.7
|
32
|
-
CFLAGS: "-m32 -
|
32
|
+
CFLAGS: "-m32 -DMRB_UTF8_STRING=1"
|
33
33
|
LDFLAGS: "-m32"
|
34
|
-
script: env;
|
34
|
+
script: env; rake --verbose all test
|
35
35
|
Test gcc-4.7 32bit_nan:
|
36
36
|
stage: test
|
37
37
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -41,7 +41,7 @@ Test gcc-4.7 32bit_nan:
|
|
41
41
|
LD: gcc-4.7
|
42
42
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1"
|
43
43
|
LDFLAGS: "-m32"
|
44
|
-
script: env;
|
44
|
+
script: env; rake --verbose all test
|
45
45
|
Test gcc-4.7 32bit_nan_utf8:
|
46
46
|
stage: test
|
47
47
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -51,7 +51,27 @@ Test gcc-4.7 32bit_nan_utf8:
|
|
51
51
|
LD: gcc-4.7
|
52
52
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
53
53
|
LDFLAGS: "-m32"
|
54
|
-
script: env;
|
54
|
+
script: env; rake --verbose all test
|
55
|
+
Test gcc-4.7 32bit_word:
|
56
|
+
stage: test
|
57
|
+
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
58
|
+
variables:
|
59
|
+
CC: gcc-4.7
|
60
|
+
CXX: g++-4.7
|
61
|
+
LD: gcc-4.7
|
62
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1"
|
63
|
+
LDFLAGS: "-m32"
|
64
|
+
script: env; rake --verbose all test
|
65
|
+
Test gcc-4.7 32bit_word_utf8:
|
66
|
+
stage: test
|
67
|
+
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
68
|
+
variables:
|
69
|
+
CC: gcc-4.7
|
70
|
+
CXX: g++-4.7
|
71
|
+
LD: gcc-4.7
|
72
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
73
|
+
LDFLAGS: "-m32"
|
74
|
+
script: env; rake --verbose all test
|
55
75
|
Test gcc-4.7 32bit_int16:
|
56
76
|
stage: test
|
57
77
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -61,7 +81,7 @@ Test gcc-4.7 32bit_int16:
|
|
61
81
|
LD: gcc-4.7
|
62
82
|
CFLAGS: "-m32 -DMRB_INT16=1"
|
63
83
|
LDFLAGS: "-m32"
|
64
|
-
script: env;
|
84
|
+
script: env; rake --verbose all test
|
65
85
|
Test gcc-4.7 32bit_int16_utf8:
|
66
86
|
stage: test
|
67
87
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -71,7 +91,7 @@ Test gcc-4.7 32bit_int16_utf8:
|
|
71
91
|
LD: gcc-4.7
|
72
92
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
73
93
|
LDFLAGS: "-m32"
|
74
|
-
script: env;
|
94
|
+
script: env; rake --verbose all test
|
75
95
|
Test gcc-4.7 32bit_int16_nan:
|
76
96
|
stage: test
|
77
97
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -81,7 +101,7 @@ Test gcc-4.7 32bit_int16_nan:
|
|
81
101
|
LD: gcc-4.7
|
82
102
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
83
103
|
LDFLAGS: "-m32"
|
84
|
-
script: env;
|
104
|
+
script: env; rake --verbose all test
|
85
105
|
Test gcc-4.7 32bit_int16_nan_utf8:
|
86
106
|
stage: test
|
87
107
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -91,7 +111,7 @@ Test gcc-4.7 32bit_int16_nan_utf8:
|
|
91
111
|
LD: gcc-4.7
|
92
112
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
93
113
|
LDFLAGS: "-m32"
|
94
|
-
script: env;
|
114
|
+
script: env; rake --verbose all test
|
95
115
|
Test gcc-4.7 32bit_int64:
|
96
116
|
stage: test
|
97
117
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -101,7 +121,7 @@ Test gcc-4.7 32bit_int64:
|
|
101
121
|
LD: gcc-4.7
|
102
122
|
CFLAGS: "-m32 -DMRB_INT64=1"
|
103
123
|
LDFLAGS: "-m32"
|
104
|
-
script: env;
|
124
|
+
script: env; rake --verbose all test
|
105
125
|
Test gcc-4.7 32bit_int64_utf8:
|
106
126
|
stage: test
|
107
127
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -111,7 +131,7 @@ Test gcc-4.7 32bit_int64_utf8:
|
|
111
131
|
LD: gcc-4.7
|
112
132
|
CFLAGS: "-m32 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
113
133
|
LDFLAGS: "-m32"
|
114
|
-
script: env;
|
134
|
+
script: env; rake --verbose all test
|
115
135
|
Test gcc-4.7 32bit_float:
|
116
136
|
stage: test
|
117
137
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -119,10 +139,30 @@ Test gcc-4.7 32bit_float:
|
|
119
139
|
CC: gcc-4.7
|
120
140
|
CXX: g++-4.7
|
121
141
|
LD: gcc-4.7
|
122
|
-
CFLAGS: "-m32 -DMRB_USE_FLOAT=1
|
142
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1"
|
123
143
|
LDFLAGS: "-m32"
|
124
|
-
script: env;
|
144
|
+
script: env; rake --verbose all test
|
125
145
|
Test gcc-4.7 32bit_float_utf8:
|
146
|
+
stage: test
|
147
|
+
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
148
|
+
variables:
|
149
|
+
CC: gcc-4.7
|
150
|
+
CXX: g++-4.7
|
151
|
+
LD: gcc-4.7
|
152
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
153
|
+
LDFLAGS: "-m32"
|
154
|
+
script: env; rake --verbose all test
|
155
|
+
Test gcc-4.7 32bit_float_word:
|
156
|
+
stage: test
|
157
|
+
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
158
|
+
variables:
|
159
|
+
CC: gcc-4.7
|
160
|
+
CXX: g++-4.7
|
161
|
+
LD: gcc-4.7
|
162
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
163
|
+
LDFLAGS: "-m32"
|
164
|
+
script: env; rake --verbose all test
|
165
|
+
Test gcc-4.7 32bit_float_word_utf8:
|
126
166
|
stage: test
|
127
167
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
128
168
|
variables:
|
@@ -131,7 +171,7 @@ Test gcc-4.7 32bit_float_utf8:
|
|
131
171
|
LD: gcc-4.7
|
132
172
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
133
173
|
LDFLAGS: "-m32"
|
134
|
-
script: env;
|
174
|
+
script: env; rake --verbose all test
|
135
175
|
Test gcc-4.7 32bit_float_int16:
|
136
176
|
stage: test
|
137
177
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -141,7 +181,7 @@ Test gcc-4.7 32bit_float_int16:
|
|
141
181
|
LD: gcc-4.7
|
142
182
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
143
183
|
LDFLAGS: "-m32"
|
144
|
-
script: env;
|
184
|
+
script: env; rake --verbose all test
|
145
185
|
Test gcc-4.7 32bit_float_int16_utf8:
|
146
186
|
stage: test
|
147
187
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -151,7 +191,7 @@ Test gcc-4.7 32bit_float_int16_utf8:
|
|
151
191
|
LD: gcc-4.7
|
152
192
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
153
193
|
LDFLAGS: "-m32"
|
154
|
-
script: env;
|
194
|
+
script: env; rake --verbose all test
|
155
195
|
Test gcc-4.7 32bit_float_int64:
|
156
196
|
stage: test
|
157
197
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -161,7 +201,7 @@ Test gcc-4.7 32bit_float_int64:
|
|
161
201
|
LD: gcc-4.7
|
162
202
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
163
203
|
LDFLAGS: "-m32"
|
164
|
-
script: env;
|
204
|
+
script: env; rake --verbose all test
|
165
205
|
Test gcc-4.7 32bit_float_int64_utf8:
|
166
206
|
stage: test
|
167
207
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -171,7 +211,7 @@ Test gcc-4.7 32bit_float_int64_utf8:
|
|
171
211
|
LD: gcc-4.7
|
172
212
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
173
213
|
LDFLAGS: "-m32"
|
174
|
-
script: env;
|
214
|
+
script: env; rake --verbose all test
|
175
215
|
Test gcc-4.7 64bit:
|
176
216
|
stage: test
|
177
217
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -179,9 +219,9 @@ Test gcc-4.7 64bit:
|
|
179
219
|
CC: gcc-4.7
|
180
220
|
CXX: g++-4.7
|
181
221
|
LD: gcc-4.7
|
182
|
-
CFLAGS:
|
222
|
+
CFLAGS: ''
|
183
223
|
LDFLAGS: ''
|
184
|
-
script: env;
|
224
|
+
script: env; rake --verbose all test
|
185
225
|
Test gcc-4.7 64bit_utf8:
|
186
226
|
stage: test
|
187
227
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -189,9 +229,9 @@ Test gcc-4.7 64bit_utf8:
|
|
189
229
|
CC: gcc-4.7
|
190
230
|
CXX: g++-4.7
|
191
231
|
LD: gcc-4.7
|
192
|
-
CFLAGS: "-
|
232
|
+
CFLAGS: "-DMRB_UTF8_STRING=1"
|
193
233
|
LDFLAGS: ''
|
194
|
-
script: env;
|
234
|
+
script: env; rake --verbose all test
|
195
235
|
Test gcc-4.7 64bit_nan:
|
196
236
|
stage: test
|
197
237
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -201,7 +241,7 @@ Test gcc-4.7 64bit_nan:
|
|
201
241
|
LD: gcc-4.7
|
202
242
|
CFLAGS: "-DMRB_NAN_BOXING=1"
|
203
243
|
LDFLAGS: ''
|
204
|
-
script: env;
|
244
|
+
script: env; rake --verbose all test
|
205
245
|
Test gcc-4.7 64bit_nan_utf8:
|
206
246
|
stage: test
|
207
247
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -211,7 +251,27 @@ Test gcc-4.7 64bit_nan_utf8:
|
|
211
251
|
LD: gcc-4.7
|
212
252
|
CFLAGS: "-DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
213
253
|
LDFLAGS: ''
|
214
|
-
script: env;
|
254
|
+
script: env; rake --verbose all test
|
255
|
+
Test gcc-4.7 64bit_word:
|
256
|
+
stage: test
|
257
|
+
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
258
|
+
variables:
|
259
|
+
CC: gcc-4.7
|
260
|
+
CXX: g++-4.7
|
261
|
+
LD: gcc-4.7
|
262
|
+
CFLAGS: "-DMRB_WORD_BOXING=1"
|
263
|
+
LDFLAGS: ''
|
264
|
+
script: env; rake --verbose all test
|
265
|
+
Test gcc-4.7 64bit_word_utf8:
|
266
|
+
stage: test
|
267
|
+
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
268
|
+
variables:
|
269
|
+
CC: gcc-4.7
|
270
|
+
CXX: g++-4.7
|
271
|
+
LD: gcc-4.7
|
272
|
+
CFLAGS: "-DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
273
|
+
LDFLAGS: ''
|
274
|
+
script: env; rake --verbose all test
|
215
275
|
Test gcc-4.7 64bit_int16:
|
216
276
|
stage: test
|
217
277
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -221,7 +281,7 @@ Test gcc-4.7 64bit_int16:
|
|
221
281
|
LD: gcc-4.7
|
222
282
|
CFLAGS: "-DMRB_INT16=1"
|
223
283
|
LDFLAGS: ''
|
224
|
-
script: env;
|
284
|
+
script: env; rake --verbose all test
|
225
285
|
Test gcc-4.7 64bit_int16_utf8:
|
226
286
|
stage: test
|
227
287
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -231,7 +291,7 @@ Test gcc-4.7 64bit_int16_utf8:
|
|
231
291
|
LD: gcc-4.7
|
232
292
|
CFLAGS: "-DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
233
293
|
LDFLAGS: ''
|
234
|
-
script: env;
|
294
|
+
script: env; rake --verbose all test
|
235
295
|
Test gcc-4.7 64bit_int16_nan:
|
236
296
|
stage: test
|
237
297
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -241,7 +301,7 @@ Test gcc-4.7 64bit_int16_nan:
|
|
241
301
|
LD: gcc-4.7
|
242
302
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
243
303
|
LDFLAGS: ''
|
244
|
-
script: env;
|
304
|
+
script: env; rake --verbose all test
|
245
305
|
Test gcc-4.7 64bit_int16_nan_utf8:
|
246
306
|
stage: test
|
247
307
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -251,7 +311,7 @@ Test gcc-4.7 64bit_int16_nan_utf8:
|
|
251
311
|
LD: gcc-4.7
|
252
312
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
253
313
|
LDFLAGS: ''
|
254
|
-
script: env;
|
314
|
+
script: env; rake --verbose all test
|
255
315
|
Test gcc-4.7 64bit_int64:
|
256
316
|
stage: test
|
257
317
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -259,10 +319,30 @@ Test gcc-4.7 64bit_int64:
|
|
259
319
|
CC: gcc-4.7
|
260
320
|
CXX: g++-4.7
|
261
321
|
LD: gcc-4.7
|
262
|
-
CFLAGS: "-DMRB_INT64=1
|
322
|
+
CFLAGS: "-DMRB_INT64=1"
|
263
323
|
LDFLAGS: ''
|
264
|
-
script: env;
|
324
|
+
script: env; rake --verbose all test
|
265
325
|
Test gcc-4.7 64bit_int64_utf8:
|
326
|
+
stage: test
|
327
|
+
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
328
|
+
variables:
|
329
|
+
CC: gcc-4.7
|
330
|
+
CXX: g++-4.7
|
331
|
+
LD: gcc-4.7
|
332
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
333
|
+
LDFLAGS: ''
|
334
|
+
script: env; rake --verbose all test
|
335
|
+
Test gcc-4.7 64bit_int64_word:
|
336
|
+
stage: test
|
337
|
+
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
338
|
+
variables:
|
339
|
+
CC: gcc-4.7
|
340
|
+
CXX: g++-4.7
|
341
|
+
LD: gcc-4.7
|
342
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
343
|
+
LDFLAGS: ''
|
344
|
+
script: env; rake --verbose all test
|
345
|
+
Test gcc-4.7 64bit_int64_word_utf8:
|
266
346
|
stage: test
|
267
347
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
268
348
|
variables:
|
@@ -271,7 +351,7 @@ Test gcc-4.7 64bit_int64_utf8:
|
|
271
351
|
LD: gcc-4.7
|
272
352
|
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
273
353
|
LDFLAGS: ''
|
274
|
-
script: env;
|
354
|
+
script: env; rake --verbose all test
|
275
355
|
Test gcc-4.7 64bit_float:
|
276
356
|
stage: test
|
277
357
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -279,10 +359,30 @@ Test gcc-4.7 64bit_float:
|
|
279
359
|
CC: gcc-4.7
|
280
360
|
CXX: g++-4.7
|
281
361
|
LD: gcc-4.7
|
282
|
-
CFLAGS: "-DMRB_USE_FLOAT=1
|
362
|
+
CFLAGS: "-DMRB_USE_FLOAT=1"
|
283
363
|
LDFLAGS: ''
|
284
|
-
script: env;
|
364
|
+
script: env; rake --verbose all test
|
285
365
|
Test gcc-4.7 64bit_float_utf8:
|
366
|
+
stage: test
|
367
|
+
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
368
|
+
variables:
|
369
|
+
CC: gcc-4.7
|
370
|
+
CXX: g++-4.7
|
371
|
+
LD: gcc-4.7
|
372
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
373
|
+
LDFLAGS: ''
|
374
|
+
script: env; rake --verbose all test
|
375
|
+
Test gcc-4.7 64bit_float_word:
|
376
|
+
stage: test
|
377
|
+
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
378
|
+
variables:
|
379
|
+
CC: gcc-4.7
|
380
|
+
CXX: g++-4.7
|
381
|
+
LD: gcc-4.7
|
382
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
383
|
+
LDFLAGS: ''
|
384
|
+
script: env; rake --verbose all test
|
385
|
+
Test gcc-4.7 64bit_float_word_utf8:
|
286
386
|
stage: test
|
287
387
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
288
388
|
variables:
|
@@ -291,7 +391,7 @@ Test gcc-4.7 64bit_float_utf8:
|
|
291
391
|
LD: gcc-4.7
|
292
392
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
293
393
|
LDFLAGS: ''
|
294
|
-
script: env;
|
394
|
+
script: env; rake --verbose all test
|
295
395
|
Test gcc-4.7 64bit_float_int16:
|
296
396
|
stage: test
|
297
397
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -301,7 +401,7 @@ Test gcc-4.7 64bit_float_int16:
|
|
301
401
|
LD: gcc-4.7
|
302
402
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
303
403
|
LDFLAGS: ''
|
304
|
-
script: env;
|
404
|
+
script: env; rake --verbose all test
|
305
405
|
Test gcc-4.7 64bit_float_int16_utf8:
|
306
406
|
stage: test
|
307
407
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -311,7 +411,7 @@ Test gcc-4.7 64bit_float_int16_utf8:
|
|
311
411
|
LD: gcc-4.7
|
312
412
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
313
413
|
LDFLAGS: ''
|
314
|
-
script: env;
|
414
|
+
script: env; rake --verbose all test
|
315
415
|
Test gcc-4.7 64bit_float_int64:
|
316
416
|
stage: test
|
317
417
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
@@ -319,10 +419,30 @@ Test gcc-4.7 64bit_float_int64:
|
|
319
419
|
CC: gcc-4.7
|
320
420
|
CXX: g++-4.7
|
321
421
|
LD: gcc-4.7
|
322
|
-
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1
|
422
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
323
423
|
LDFLAGS: ''
|
324
|
-
script: env;
|
424
|
+
script: env; rake --verbose all test
|
325
425
|
Test gcc-4.7 64bit_float_int64_utf8:
|
426
|
+
stage: test
|
427
|
+
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
428
|
+
variables:
|
429
|
+
CC: gcc-4.7
|
430
|
+
CXX: g++-4.7
|
431
|
+
LD: gcc-4.7
|
432
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
433
|
+
LDFLAGS: ''
|
434
|
+
script: env; rake --verbose all test
|
435
|
+
Test gcc-4.7 64bit_float_int64_word:
|
436
|
+
stage: test
|
437
|
+
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
438
|
+
variables:
|
439
|
+
CC: gcc-4.7
|
440
|
+
CXX: g++-4.7
|
441
|
+
LD: gcc-4.7
|
442
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
443
|
+
LDFLAGS: ''
|
444
|
+
script: env; rake --verbose all test
|
445
|
+
Test gcc-4.7 64bit_float_int64_word_utf8:
|
326
446
|
stage: test
|
327
447
|
image: registry.gitlab.com/dabroz/mruby:gcc47_0.7
|
328
448
|
variables:
|
@@ -331,7 +451,7 @@ Test gcc-4.7 64bit_float_int64_utf8:
|
|
331
451
|
LD: gcc-4.7
|
332
452
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
333
453
|
LDFLAGS: ''
|
334
|
-
script: env;
|
454
|
+
script: env; rake --verbose all test
|
335
455
|
Test gcc-4.8 32bit:
|
336
456
|
stage: test
|
337
457
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -339,9 +459,9 @@ Test gcc-4.8 32bit:
|
|
339
459
|
CC: gcc-4.8
|
340
460
|
CXX: g++-4.8
|
341
461
|
LD: gcc-4.8
|
342
|
-
CFLAGS: "-m32
|
462
|
+
CFLAGS: "-m32 "
|
343
463
|
LDFLAGS: "-m32"
|
344
|
-
script: env;
|
464
|
+
script: env; rake --verbose all test
|
345
465
|
Test gcc-4.8 32bit_utf8:
|
346
466
|
stage: test
|
347
467
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -349,9 +469,9 @@ Test gcc-4.8 32bit_utf8:
|
|
349
469
|
CC: gcc-4.8
|
350
470
|
CXX: g++-4.8
|
351
471
|
LD: gcc-4.8
|
352
|
-
CFLAGS: "-m32 -
|
472
|
+
CFLAGS: "-m32 -DMRB_UTF8_STRING=1"
|
353
473
|
LDFLAGS: "-m32"
|
354
|
-
script: env;
|
474
|
+
script: env; rake --verbose all test
|
355
475
|
Test gcc-4.8 32bit_nan:
|
356
476
|
stage: test
|
357
477
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -361,7 +481,7 @@ Test gcc-4.8 32bit_nan:
|
|
361
481
|
LD: gcc-4.8
|
362
482
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1"
|
363
483
|
LDFLAGS: "-m32"
|
364
|
-
script: env;
|
484
|
+
script: env; rake --verbose all test
|
365
485
|
Test gcc-4.8 32bit_nan_utf8:
|
366
486
|
stage: test
|
367
487
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -371,7 +491,27 @@ Test gcc-4.8 32bit_nan_utf8:
|
|
371
491
|
LD: gcc-4.8
|
372
492
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
373
493
|
LDFLAGS: "-m32"
|
374
|
-
script: env;
|
494
|
+
script: env; rake --verbose all test
|
495
|
+
Test gcc-4.8 32bit_word:
|
496
|
+
stage: test
|
497
|
+
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
498
|
+
variables:
|
499
|
+
CC: gcc-4.8
|
500
|
+
CXX: g++-4.8
|
501
|
+
LD: gcc-4.8
|
502
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1"
|
503
|
+
LDFLAGS: "-m32"
|
504
|
+
script: env; rake --verbose all test
|
505
|
+
Test gcc-4.8 32bit_word_utf8:
|
506
|
+
stage: test
|
507
|
+
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
508
|
+
variables:
|
509
|
+
CC: gcc-4.8
|
510
|
+
CXX: g++-4.8
|
511
|
+
LD: gcc-4.8
|
512
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
513
|
+
LDFLAGS: "-m32"
|
514
|
+
script: env; rake --verbose all test
|
375
515
|
Test gcc-4.8 32bit_int16:
|
376
516
|
stage: test
|
377
517
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -381,7 +521,7 @@ Test gcc-4.8 32bit_int16:
|
|
381
521
|
LD: gcc-4.8
|
382
522
|
CFLAGS: "-m32 -DMRB_INT16=1"
|
383
523
|
LDFLAGS: "-m32"
|
384
|
-
script: env;
|
524
|
+
script: env; rake --verbose all test
|
385
525
|
Test gcc-4.8 32bit_int16_utf8:
|
386
526
|
stage: test
|
387
527
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -391,7 +531,7 @@ Test gcc-4.8 32bit_int16_utf8:
|
|
391
531
|
LD: gcc-4.8
|
392
532
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
393
533
|
LDFLAGS: "-m32"
|
394
|
-
script: env;
|
534
|
+
script: env; rake --verbose all test
|
395
535
|
Test gcc-4.8 32bit_int16_nan:
|
396
536
|
stage: test
|
397
537
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -401,7 +541,7 @@ Test gcc-4.8 32bit_int16_nan:
|
|
401
541
|
LD: gcc-4.8
|
402
542
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
403
543
|
LDFLAGS: "-m32"
|
404
|
-
script: env;
|
544
|
+
script: env; rake --verbose all test
|
405
545
|
Test gcc-4.8 32bit_int16_nan_utf8:
|
406
546
|
stage: test
|
407
547
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -411,7 +551,7 @@ Test gcc-4.8 32bit_int16_nan_utf8:
|
|
411
551
|
LD: gcc-4.8
|
412
552
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
413
553
|
LDFLAGS: "-m32"
|
414
|
-
script: env;
|
554
|
+
script: env; rake --verbose all test
|
415
555
|
Test gcc-4.8 32bit_int64:
|
416
556
|
stage: test
|
417
557
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -421,7 +561,7 @@ Test gcc-4.8 32bit_int64:
|
|
421
561
|
LD: gcc-4.8
|
422
562
|
CFLAGS: "-m32 -DMRB_INT64=1"
|
423
563
|
LDFLAGS: "-m32"
|
424
|
-
script: env;
|
564
|
+
script: env; rake --verbose all test
|
425
565
|
Test gcc-4.8 32bit_int64_utf8:
|
426
566
|
stage: test
|
427
567
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -431,7 +571,7 @@ Test gcc-4.8 32bit_int64_utf8:
|
|
431
571
|
LD: gcc-4.8
|
432
572
|
CFLAGS: "-m32 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
433
573
|
LDFLAGS: "-m32"
|
434
|
-
script: env;
|
574
|
+
script: env; rake --verbose all test
|
435
575
|
Test gcc-4.8 32bit_float:
|
436
576
|
stage: test
|
437
577
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -439,10 +579,30 @@ Test gcc-4.8 32bit_float:
|
|
439
579
|
CC: gcc-4.8
|
440
580
|
CXX: g++-4.8
|
441
581
|
LD: gcc-4.8
|
442
|
-
CFLAGS: "-m32 -DMRB_USE_FLOAT=1
|
582
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1"
|
443
583
|
LDFLAGS: "-m32"
|
444
|
-
script: env;
|
584
|
+
script: env; rake --verbose all test
|
445
585
|
Test gcc-4.8 32bit_float_utf8:
|
586
|
+
stage: test
|
587
|
+
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
588
|
+
variables:
|
589
|
+
CC: gcc-4.8
|
590
|
+
CXX: g++-4.8
|
591
|
+
LD: gcc-4.8
|
592
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
593
|
+
LDFLAGS: "-m32"
|
594
|
+
script: env; rake --verbose all test
|
595
|
+
Test gcc-4.8 32bit_float_word:
|
596
|
+
stage: test
|
597
|
+
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
598
|
+
variables:
|
599
|
+
CC: gcc-4.8
|
600
|
+
CXX: g++-4.8
|
601
|
+
LD: gcc-4.8
|
602
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
603
|
+
LDFLAGS: "-m32"
|
604
|
+
script: env; rake --verbose all test
|
605
|
+
Test gcc-4.8 32bit_float_word_utf8:
|
446
606
|
stage: test
|
447
607
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
448
608
|
variables:
|
@@ -451,7 +611,7 @@ Test gcc-4.8 32bit_float_utf8:
|
|
451
611
|
LD: gcc-4.8
|
452
612
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
453
613
|
LDFLAGS: "-m32"
|
454
|
-
script: env;
|
614
|
+
script: env; rake --verbose all test
|
455
615
|
Test gcc-4.8 32bit_float_int16:
|
456
616
|
stage: test
|
457
617
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -461,7 +621,7 @@ Test gcc-4.8 32bit_float_int16:
|
|
461
621
|
LD: gcc-4.8
|
462
622
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
463
623
|
LDFLAGS: "-m32"
|
464
|
-
script: env;
|
624
|
+
script: env; rake --verbose all test
|
465
625
|
Test gcc-4.8 32bit_float_int16_utf8:
|
466
626
|
stage: test
|
467
627
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -471,7 +631,7 @@ Test gcc-4.8 32bit_float_int16_utf8:
|
|
471
631
|
LD: gcc-4.8
|
472
632
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
473
633
|
LDFLAGS: "-m32"
|
474
|
-
script: env;
|
634
|
+
script: env; rake --verbose all test
|
475
635
|
Test gcc-4.8 32bit_float_int64:
|
476
636
|
stage: test
|
477
637
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -481,7 +641,7 @@ Test gcc-4.8 32bit_float_int64:
|
|
481
641
|
LD: gcc-4.8
|
482
642
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
483
643
|
LDFLAGS: "-m32"
|
484
|
-
script: env;
|
644
|
+
script: env; rake --verbose all test
|
485
645
|
Test gcc-4.8 32bit_float_int64_utf8:
|
486
646
|
stage: test
|
487
647
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -491,7 +651,7 @@ Test gcc-4.8 32bit_float_int64_utf8:
|
|
491
651
|
LD: gcc-4.8
|
492
652
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
493
653
|
LDFLAGS: "-m32"
|
494
|
-
script: env;
|
654
|
+
script: env; rake --verbose all test
|
495
655
|
Test gcc-4.8 64bit:
|
496
656
|
stage: test
|
497
657
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -499,9 +659,9 @@ Test gcc-4.8 64bit:
|
|
499
659
|
CC: gcc-4.8
|
500
660
|
CXX: g++-4.8
|
501
661
|
LD: gcc-4.8
|
502
|
-
CFLAGS:
|
662
|
+
CFLAGS: ''
|
503
663
|
LDFLAGS: ''
|
504
|
-
script: env;
|
664
|
+
script: env; rake --verbose all test
|
505
665
|
Test gcc-4.8 64bit_utf8:
|
506
666
|
stage: test
|
507
667
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -509,9 +669,9 @@ Test gcc-4.8 64bit_utf8:
|
|
509
669
|
CC: gcc-4.8
|
510
670
|
CXX: g++-4.8
|
511
671
|
LD: gcc-4.8
|
512
|
-
CFLAGS: "-
|
672
|
+
CFLAGS: "-DMRB_UTF8_STRING=1"
|
513
673
|
LDFLAGS: ''
|
514
|
-
script: env;
|
674
|
+
script: env; rake --verbose all test
|
515
675
|
Test gcc-4.8 64bit_nan:
|
516
676
|
stage: test
|
517
677
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -521,7 +681,7 @@ Test gcc-4.8 64bit_nan:
|
|
521
681
|
LD: gcc-4.8
|
522
682
|
CFLAGS: "-DMRB_NAN_BOXING=1"
|
523
683
|
LDFLAGS: ''
|
524
|
-
script: env;
|
684
|
+
script: env; rake --verbose all test
|
525
685
|
Test gcc-4.8 64bit_nan_utf8:
|
526
686
|
stage: test
|
527
687
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -531,7 +691,27 @@ Test gcc-4.8 64bit_nan_utf8:
|
|
531
691
|
LD: gcc-4.8
|
532
692
|
CFLAGS: "-DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
533
693
|
LDFLAGS: ''
|
534
|
-
script: env;
|
694
|
+
script: env; rake --verbose all test
|
695
|
+
Test gcc-4.8 64bit_word:
|
696
|
+
stage: test
|
697
|
+
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
698
|
+
variables:
|
699
|
+
CC: gcc-4.8
|
700
|
+
CXX: g++-4.8
|
701
|
+
LD: gcc-4.8
|
702
|
+
CFLAGS: "-DMRB_WORD_BOXING=1"
|
703
|
+
LDFLAGS: ''
|
704
|
+
script: env; rake --verbose all test
|
705
|
+
Test gcc-4.8 64bit_word_utf8:
|
706
|
+
stage: test
|
707
|
+
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
708
|
+
variables:
|
709
|
+
CC: gcc-4.8
|
710
|
+
CXX: g++-4.8
|
711
|
+
LD: gcc-4.8
|
712
|
+
CFLAGS: "-DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
713
|
+
LDFLAGS: ''
|
714
|
+
script: env; rake --verbose all test
|
535
715
|
Test gcc-4.8 64bit_int16:
|
536
716
|
stage: test
|
537
717
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -541,7 +721,7 @@ Test gcc-4.8 64bit_int16:
|
|
541
721
|
LD: gcc-4.8
|
542
722
|
CFLAGS: "-DMRB_INT16=1"
|
543
723
|
LDFLAGS: ''
|
544
|
-
script: env;
|
724
|
+
script: env; rake --verbose all test
|
545
725
|
Test gcc-4.8 64bit_int16_utf8:
|
546
726
|
stage: test
|
547
727
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -551,7 +731,7 @@ Test gcc-4.8 64bit_int16_utf8:
|
|
551
731
|
LD: gcc-4.8
|
552
732
|
CFLAGS: "-DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
553
733
|
LDFLAGS: ''
|
554
|
-
script: env;
|
734
|
+
script: env; rake --verbose all test
|
555
735
|
Test gcc-4.8 64bit_int16_nan:
|
556
736
|
stage: test
|
557
737
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -561,7 +741,7 @@ Test gcc-4.8 64bit_int16_nan:
|
|
561
741
|
LD: gcc-4.8
|
562
742
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
563
743
|
LDFLAGS: ''
|
564
|
-
script: env;
|
744
|
+
script: env; rake --verbose all test
|
565
745
|
Test gcc-4.8 64bit_int16_nan_utf8:
|
566
746
|
stage: test
|
567
747
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -571,7 +751,7 @@ Test gcc-4.8 64bit_int16_nan_utf8:
|
|
571
751
|
LD: gcc-4.8
|
572
752
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
573
753
|
LDFLAGS: ''
|
574
|
-
script: env;
|
754
|
+
script: env; rake --verbose all test
|
575
755
|
Test gcc-4.8 64bit_int64:
|
576
756
|
stage: test
|
577
757
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -579,10 +759,30 @@ Test gcc-4.8 64bit_int64:
|
|
579
759
|
CC: gcc-4.8
|
580
760
|
CXX: g++-4.8
|
581
761
|
LD: gcc-4.8
|
582
|
-
CFLAGS: "-DMRB_INT64=1
|
762
|
+
CFLAGS: "-DMRB_INT64=1"
|
583
763
|
LDFLAGS: ''
|
584
|
-
script: env;
|
764
|
+
script: env; rake --verbose all test
|
585
765
|
Test gcc-4.8 64bit_int64_utf8:
|
766
|
+
stage: test
|
767
|
+
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
768
|
+
variables:
|
769
|
+
CC: gcc-4.8
|
770
|
+
CXX: g++-4.8
|
771
|
+
LD: gcc-4.8
|
772
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
773
|
+
LDFLAGS: ''
|
774
|
+
script: env; rake --verbose all test
|
775
|
+
Test gcc-4.8 64bit_int64_word:
|
776
|
+
stage: test
|
777
|
+
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
778
|
+
variables:
|
779
|
+
CC: gcc-4.8
|
780
|
+
CXX: g++-4.8
|
781
|
+
LD: gcc-4.8
|
782
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
783
|
+
LDFLAGS: ''
|
784
|
+
script: env; rake --verbose all test
|
785
|
+
Test gcc-4.8 64bit_int64_word_utf8:
|
586
786
|
stage: test
|
587
787
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
588
788
|
variables:
|
@@ -591,7 +791,7 @@ Test gcc-4.8 64bit_int64_utf8:
|
|
591
791
|
LD: gcc-4.8
|
592
792
|
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
593
793
|
LDFLAGS: ''
|
594
|
-
script: env;
|
794
|
+
script: env; rake --verbose all test
|
595
795
|
Test gcc-4.8 64bit_float:
|
596
796
|
stage: test
|
597
797
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -599,10 +799,30 @@ Test gcc-4.8 64bit_float:
|
|
599
799
|
CC: gcc-4.8
|
600
800
|
CXX: g++-4.8
|
601
801
|
LD: gcc-4.8
|
602
|
-
CFLAGS: "-DMRB_USE_FLOAT=1
|
802
|
+
CFLAGS: "-DMRB_USE_FLOAT=1"
|
603
803
|
LDFLAGS: ''
|
604
|
-
script: env;
|
804
|
+
script: env; rake --verbose all test
|
605
805
|
Test gcc-4.8 64bit_float_utf8:
|
806
|
+
stage: test
|
807
|
+
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
808
|
+
variables:
|
809
|
+
CC: gcc-4.8
|
810
|
+
CXX: g++-4.8
|
811
|
+
LD: gcc-4.8
|
812
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
813
|
+
LDFLAGS: ''
|
814
|
+
script: env; rake --verbose all test
|
815
|
+
Test gcc-4.8 64bit_float_word:
|
816
|
+
stage: test
|
817
|
+
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
818
|
+
variables:
|
819
|
+
CC: gcc-4.8
|
820
|
+
CXX: g++-4.8
|
821
|
+
LD: gcc-4.8
|
822
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
823
|
+
LDFLAGS: ''
|
824
|
+
script: env; rake --verbose all test
|
825
|
+
Test gcc-4.8 64bit_float_word_utf8:
|
606
826
|
stage: test
|
607
827
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
608
828
|
variables:
|
@@ -611,7 +831,7 @@ Test gcc-4.8 64bit_float_utf8:
|
|
611
831
|
LD: gcc-4.8
|
612
832
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
613
833
|
LDFLAGS: ''
|
614
|
-
script: env;
|
834
|
+
script: env; rake --verbose all test
|
615
835
|
Test gcc-4.8 64bit_float_int16:
|
616
836
|
stage: test
|
617
837
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -621,7 +841,7 @@ Test gcc-4.8 64bit_float_int16:
|
|
621
841
|
LD: gcc-4.8
|
622
842
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
623
843
|
LDFLAGS: ''
|
624
|
-
script: env;
|
844
|
+
script: env; rake --verbose all test
|
625
845
|
Test gcc-4.8 64bit_float_int16_utf8:
|
626
846
|
stage: test
|
627
847
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -631,7 +851,7 @@ Test gcc-4.8 64bit_float_int16_utf8:
|
|
631
851
|
LD: gcc-4.8
|
632
852
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
633
853
|
LDFLAGS: ''
|
634
|
-
script: env;
|
854
|
+
script: env; rake --verbose all test
|
635
855
|
Test gcc-4.8 64bit_float_int64:
|
636
856
|
stage: test
|
637
857
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
@@ -639,10 +859,30 @@ Test gcc-4.8 64bit_float_int64:
|
|
639
859
|
CC: gcc-4.8
|
640
860
|
CXX: g++-4.8
|
641
861
|
LD: gcc-4.8
|
642
|
-
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1
|
862
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
643
863
|
LDFLAGS: ''
|
644
|
-
script: env;
|
864
|
+
script: env; rake --verbose all test
|
645
865
|
Test gcc-4.8 64bit_float_int64_utf8:
|
866
|
+
stage: test
|
867
|
+
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
868
|
+
variables:
|
869
|
+
CC: gcc-4.8
|
870
|
+
CXX: g++-4.8
|
871
|
+
LD: gcc-4.8
|
872
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
873
|
+
LDFLAGS: ''
|
874
|
+
script: env; rake --verbose all test
|
875
|
+
Test gcc-4.8 64bit_float_int64_word:
|
876
|
+
stage: test
|
877
|
+
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
878
|
+
variables:
|
879
|
+
CC: gcc-4.8
|
880
|
+
CXX: g++-4.8
|
881
|
+
LD: gcc-4.8
|
882
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
883
|
+
LDFLAGS: ''
|
884
|
+
script: env; rake --verbose all test
|
885
|
+
Test gcc-4.8 64bit_float_int64_word_utf8:
|
646
886
|
stage: test
|
647
887
|
image: registry.gitlab.com/dabroz/mruby:gcc48_0.7
|
648
888
|
variables:
|
@@ -651,7 +891,7 @@ Test gcc-4.8 64bit_float_int64_utf8:
|
|
651
891
|
LD: gcc-4.8
|
652
892
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
653
893
|
LDFLAGS: ''
|
654
|
-
script: env;
|
894
|
+
script: env; rake --verbose all test
|
655
895
|
Test gcc-4.9 32bit:
|
656
896
|
stage: test
|
657
897
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -659,9 +899,9 @@ Test gcc-4.9 32bit:
|
|
659
899
|
CC: gcc-4.9
|
660
900
|
CXX: g++-4.9
|
661
901
|
LD: gcc-4.9
|
662
|
-
CFLAGS: "-m32
|
902
|
+
CFLAGS: "-m32 "
|
663
903
|
LDFLAGS: "-m32"
|
664
|
-
script: env;
|
904
|
+
script: env; rake --verbose all test
|
665
905
|
Test gcc-4.9 32bit_utf8:
|
666
906
|
stage: test
|
667
907
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -669,9 +909,9 @@ Test gcc-4.9 32bit_utf8:
|
|
669
909
|
CC: gcc-4.9
|
670
910
|
CXX: g++-4.9
|
671
911
|
LD: gcc-4.9
|
672
|
-
CFLAGS: "-m32 -
|
912
|
+
CFLAGS: "-m32 -DMRB_UTF8_STRING=1"
|
673
913
|
LDFLAGS: "-m32"
|
674
|
-
script: env;
|
914
|
+
script: env; rake --verbose all test
|
675
915
|
Test gcc-4.9 32bit_nan:
|
676
916
|
stage: test
|
677
917
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -681,7 +921,7 @@ Test gcc-4.9 32bit_nan:
|
|
681
921
|
LD: gcc-4.9
|
682
922
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1"
|
683
923
|
LDFLAGS: "-m32"
|
684
|
-
script: env;
|
924
|
+
script: env; rake --verbose all test
|
685
925
|
Test gcc-4.9 32bit_nan_utf8:
|
686
926
|
stage: test
|
687
927
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -691,7 +931,27 @@ Test gcc-4.9 32bit_nan_utf8:
|
|
691
931
|
LD: gcc-4.9
|
692
932
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
693
933
|
LDFLAGS: "-m32"
|
694
|
-
script: env;
|
934
|
+
script: env; rake --verbose all test
|
935
|
+
Test gcc-4.9 32bit_word:
|
936
|
+
stage: test
|
937
|
+
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
938
|
+
variables:
|
939
|
+
CC: gcc-4.9
|
940
|
+
CXX: g++-4.9
|
941
|
+
LD: gcc-4.9
|
942
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1"
|
943
|
+
LDFLAGS: "-m32"
|
944
|
+
script: env; rake --verbose all test
|
945
|
+
Test gcc-4.9 32bit_word_utf8:
|
946
|
+
stage: test
|
947
|
+
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
948
|
+
variables:
|
949
|
+
CC: gcc-4.9
|
950
|
+
CXX: g++-4.9
|
951
|
+
LD: gcc-4.9
|
952
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
953
|
+
LDFLAGS: "-m32"
|
954
|
+
script: env; rake --verbose all test
|
695
955
|
Test gcc-4.9 32bit_int16:
|
696
956
|
stage: test
|
697
957
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -701,7 +961,7 @@ Test gcc-4.9 32bit_int16:
|
|
701
961
|
LD: gcc-4.9
|
702
962
|
CFLAGS: "-m32 -DMRB_INT16=1"
|
703
963
|
LDFLAGS: "-m32"
|
704
|
-
script: env;
|
964
|
+
script: env; rake --verbose all test
|
705
965
|
Test gcc-4.9 32bit_int16_utf8:
|
706
966
|
stage: test
|
707
967
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -711,7 +971,7 @@ Test gcc-4.9 32bit_int16_utf8:
|
|
711
971
|
LD: gcc-4.9
|
712
972
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
713
973
|
LDFLAGS: "-m32"
|
714
|
-
script: env;
|
974
|
+
script: env; rake --verbose all test
|
715
975
|
Test gcc-4.9 32bit_int16_nan:
|
716
976
|
stage: test
|
717
977
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -721,7 +981,7 @@ Test gcc-4.9 32bit_int16_nan:
|
|
721
981
|
LD: gcc-4.9
|
722
982
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
723
983
|
LDFLAGS: "-m32"
|
724
|
-
script: env;
|
984
|
+
script: env; rake --verbose all test
|
725
985
|
Test gcc-4.9 32bit_int16_nan_utf8:
|
726
986
|
stage: test
|
727
987
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -731,7 +991,7 @@ Test gcc-4.9 32bit_int16_nan_utf8:
|
|
731
991
|
LD: gcc-4.9
|
732
992
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
733
993
|
LDFLAGS: "-m32"
|
734
|
-
script: env;
|
994
|
+
script: env; rake --verbose all test
|
735
995
|
Test gcc-4.9 32bit_int64:
|
736
996
|
stage: test
|
737
997
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -741,7 +1001,7 @@ Test gcc-4.9 32bit_int64:
|
|
741
1001
|
LD: gcc-4.9
|
742
1002
|
CFLAGS: "-m32 -DMRB_INT64=1"
|
743
1003
|
LDFLAGS: "-m32"
|
744
|
-
script: env;
|
1004
|
+
script: env; rake --verbose all test
|
745
1005
|
Test gcc-4.9 32bit_int64_utf8:
|
746
1006
|
stage: test
|
747
1007
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -751,7 +1011,7 @@ Test gcc-4.9 32bit_int64_utf8:
|
|
751
1011
|
LD: gcc-4.9
|
752
1012
|
CFLAGS: "-m32 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
753
1013
|
LDFLAGS: "-m32"
|
754
|
-
script: env;
|
1014
|
+
script: env; rake --verbose all test
|
755
1015
|
Test gcc-4.9 32bit_float:
|
756
1016
|
stage: test
|
757
1017
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -759,10 +1019,30 @@ Test gcc-4.9 32bit_float:
|
|
759
1019
|
CC: gcc-4.9
|
760
1020
|
CXX: g++-4.9
|
761
1021
|
LD: gcc-4.9
|
762
|
-
CFLAGS: "-m32 -DMRB_USE_FLOAT=1
|
1022
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1"
|
763
1023
|
LDFLAGS: "-m32"
|
764
|
-
script: env;
|
1024
|
+
script: env; rake --verbose all test
|
765
1025
|
Test gcc-4.9 32bit_float_utf8:
|
1026
|
+
stage: test
|
1027
|
+
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
1028
|
+
variables:
|
1029
|
+
CC: gcc-4.9
|
1030
|
+
CXX: g++-4.9
|
1031
|
+
LD: gcc-4.9
|
1032
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
1033
|
+
LDFLAGS: "-m32"
|
1034
|
+
script: env; rake --verbose all test
|
1035
|
+
Test gcc-4.9 32bit_float_word:
|
1036
|
+
stage: test
|
1037
|
+
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
1038
|
+
variables:
|
1039
|
+
CC: gcc-4.9
|
1040
|
+
CXX: g++-4.9
|
1041
|
+
LD: gcc-4.9
|
1042
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
1043
|
+
LDFLAGS: "-m32"
|
1044
|
+
script: env; rake --verbose all test
|
1045
|
+
Test gcc-4.9 32bit_float_word_utf8:
|
766
1046
|
stage: test
|
767
1047
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
768
1048
|
variables:
|
@@ -771,7 +1051,7 @@ Test gcc-4.9 32bit_float_utf8:
|
|
771
1051
|
LD: gcc-4.9
|
772
1052
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
773
1053
|
LDFLAGS: "-m32"
|
774
|
-
script: env;
|
1054
|
+
script: env; rake --verbose all test
|
775
1055
|
Test gcc-4.9 32bit_float_int16:
|
776
1056
|
stage: test
|
777
1057
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -781,7 +1061,7 @@ Test gcc-4.9 32bit_float_int16:
|
|
781
1061
|
LD: gcc-4.9
|
782
1062
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
783
1063
|
LDFLAGS: "-m32"
|
784
|
-
script: env;
|
1064
|
+
script: env; rake --verbose all test
|
785
1065
|
Test gcc-4.9 32bit_float_int16_utf8:
|
786
1066
|
stage: test
|
787
1067
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -791,7 +1071,7 @@ Test gcc-4.9 32bit_float_int16_utf8:
|
|
791
1071
|
LD: gcc-4.9
|
792
1072
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
793
1073
|
LDFLAGS: "-m32"
|
794
|
-
script: env;
|
1074
|
+
script: env; rake --verbose all test
|
795
1075
|
Test gcc-4.9 32bit_float_int64:
|
796
1076
|
stage: test
|
797
1077
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -801,7 +1081,7 @@ Test gcc-4.9 32bit_float_int64:
|
|
801
1081
|
LD: gcc-4.9
|
802
1082
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
803
1083
|
LDFLAGS: "-m32"
|
804
|
-
script: env;
|
1084
|
+
script: env; rake --verbose all test
|
805
1085
|
Test gcc-4.9 32bit_float_int64_utf8:
|
806
1086
|
stage: test
|
807
1087
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -811,7 +1091,7 @@ Test gcc-4.9 32bit_float_int64_utf8:
|
|
811
1091
|
LD: gcc-4.9
|
812
1092
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
813
1093
|
LDFLAGS: "-m32"
|
814
|
-
script: env;
|
1094
|
+
script: env; rake --verbose all test
|
815
1095
|
Test gcc-4.9 64bit:
|
816
1096
|
stage: test
|
817
1097
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -819,9 +1099,9 @@ Test gcc-4.9 64bit:
|
|
819
1099
|
CC: gcc-4.9
|
820
1100
|
CXX: g++-4.9
|
821
1101
|
LD: gcc-4.9
|
822
|
-
CFLAGS:
|
1102
|
+
CFLAGS: ''
|
823
1103
|
LDFLAGS: ''
|
824
|
-
script: env;
|
1104
|
+
script: env; rake --verbose all test
|
825
1105
|
Test gcc-4.9 64bit_utf8:
|
826
1106
|
stage: test
|
827
1107
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -829,9 +1109,9 @@ Test gcc-4.9 64bit_utf8:
|
|
829
1109
|
CC: gcc-4.9
|
830
1110
|
CXX: g++-4.9
|
831
1111
|
LD: gcc-4.9
|
832
|
-
CFLAGS: "-
|
1112
|
+
CFLAGS: "-DMRB_UTF8_STRING=1"
|
833
1113
|
LDFLAGS: ''
|
834
|
-
script: env;
|
1114
|
+
script: env; rake --verbose all test
|
835
1115
|
Test gcc-4.9 64bit_nan:
|
836
1116
|
stage: test
|
837
1117
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -841,7 +1121,7 @@ Test gcc-4.9 64bit_nan:
|
|
841
1121
|
LD: gcc-4.9
|
842
1122
|
CFLAGS: "-DMRB_NAN_BOXING=1"
|
843
1123
|
LDFLAGS: ''
|
844
|
-
script: env;
|
1124
|
+
script: env; rake --verbose all test
|
845
1125
|
Test gcc-4.9 64bit_nan_utf8:
|
846
1126
|
stage: test
|
847
1127
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -851,7 +1131,27 @@ Test gcc-4.9 64bit_nan_utf8:
|
|
851
1131
|
LD: gcc-4.9
|
852
1132
|
CFLAGS: "-DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
853
1133
|
LDFLAGS: ''
|
854
|
-
script: env;
|
1134
|
+
script: env; rake --verbose all test
|
1135
|
+
Test gcc-4.9 64bit_word:
|
1136
|
+
stage: test
|
1137
|
+
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
1138
|
+
variables:
|
1139
|
+
CC: gcc-4.9
|
1140
|
+
CXX: g++-4.9
|
1141
|
+
LD: gcc-4.9
|
1142
|
+
CFLAGS: "-DMRB_WORD_BOXING=1"
|
1143
|
+
LDFLAGS: ''
|
1144
|
+
script: env; rake --verbose all test
|
1145
|
+
Test gcc-4.9 64bit_word_utf8:
|
1146
|
+
stage: test
|
1147
|
+
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
1148
|
+
variables:
|
1149
|
+
CC: gcc-4.9
|
1150
|
+
CXX: g++-4.9
|
1151
|
+
LD: gcc-4.9
|
1152
|
+
CFLAGS: "-DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1153
|
+
LDFLAGS: ''
|
1154
|
+
script: env; rake --verbose all test
|
855
1155
|
Test gcc-4.9 64bit_int16:
|
856
1156
|
stage: test
|
857
1157
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -861,7 +1161,7 @@ Test gcc-4.9 64bit_int16:
|
|
861
1161
|
LD: gcc-4.9
|
862
1162
|
CFLAGS: "-DMRB_INT16=1"
|
863
1163
|
LDFLAGS: ''
|
864
|
-
script: env;
|
1164
|
+
script: env; rake --verbose all test
|
865
1165
|
Test gcc-4.9 64bit_int16_utf8:
|
866
1166
|
stage: test
|
867
1167
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -871,7 +1171,7 @@ Test gcc-4.9 64bit_int16_utf8:
|
|
871
1171
|
LD: gcc-4.9
|
872
1172
|
CFLAGS: "-DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
873
1173
|
LDFLAGS: ''
|
874
|
-
script: env;
|
1174
|
+
script: env; rake --verbose all test
|
875
1175
|
Test gcc-4.9 64bit_int16_nan:
|
876
1176
|
stage: test
|
877
1177
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -881,7 +1181,7 @@ Test gcc-4.9 64bit_int16_nan:
|
|
881
1181
|
LD: gcc-4.9
|
882
1182
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
883
1183
|
LDFLAGS: ''
|
884
|
-
script: env;
|
1184
|
+
script: env; rake --verbose all test
|
885
1185
|
Test gcc-4.9 64bit_int16_nan_utf8:
|
886
1186
|
stage: test
|
887
1187
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -891,7 +1191,7 @@ Test gcc-4.9 64bit_int16_nan_utf8:
|
|
891
1191
|
LD: gcc-4.9
|
892
1192
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
893
1193
|
LDFLAGS: ''
|
894
|
-
script: env;
|
1194
|
+
script: env; rake --verbose all test
|
895
1195
|
Test gcc-4.9 64bit_int64:
|
896
1196
|
stage: test
|
897
1197
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -899,9 +1199,9 @@ Test gcc-4.9 64bit_int64:
|
|
899
1199
|
CC: gcc-4.9
|
900
1200
|
CXX: g++-4.9
|
901
1201
|
LD: gcc-4.9
|
902
|
-
CFLAGS: "-DMRB_INT64=1
|
1202
|
+
CFLAGS: "-DMRB_INT64=1"
|
903
1203
|
LDFLAGS: ''
|
904
|
-
script: env;
|
1204
|
+
script: env; rake --verbose all test
|
905
1205
|
Test gcc-4.9 64bit_int64_utf8:
|
906
1206
|
stage: test
|
907
1207
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -909,20 +1209,60 @@ Test gcc-4.9 64bit_int64_utf8:
|
|
909
1209
|
CC: gcc-4.9
|
910
1210
|
CXX: g++-4.9
|
911
1211
|
LD: gcc-4.9
|
912
|
-
CFLAGS: "-DMRB_INT64=1 -
|
1212
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
913
1213
|
LDFLAGS: ''
|
914
|
-
script: env;
|
915
|
-
Test gcc-4.9
|
1214
|
+
script: env; rake --verbose all test
|
1215
|
+
Test gcc-4.9 64bit_int64_word:
|
916
1216
|
stage: test
|
917
1217
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
918
1218
|
variables:
|
919
1219
|
CC: gcc-4.9
|
920
1220
|
CXX: g++-4.9
|
921
1221
|
LD: gcc-4.9
|
922
|
-
CFLAGS: "-
|
1222
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
1223
|
+
LDFLAGS: ''
|
1224
|
+
script: env; rake --verbose all test
|
1225
|
+
Test gcc-4.9 64bit_int64_word_utf8:
|
1226
|
+
stage: test
|
1227
|
+
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
1228
|
+
variables:
|
1229
|
+
CC: gcc-4.9
|
1230
|
+
CXX: g++-4.9
|
1231
|
+
LD: gcc-4.9
|
1232
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1233
|
+
LDFLAGS: ''
|
1234
|
+
script: env; rake --verbose all test
|
1235
|
+
Test gcc-4.9 64bit_float:
|
1236
|
+
stage: test
|
1237
|
+
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
1238
|
+
variables:
|
1239
|
+
CC: gcc-4.9
|
1240
|
+
CXX: g++-4.9
|
1241
|
+
LD: gcc-4.9
|
1242
|
+
CFLAGS: "-DMRB_USE_FLOAT=1"
|
923
1243
|
LDFLAGS: ''
|
924
|
-
script: env;
|
1244
|
+
script: env; rake --verbose all test
|
925
1245
|
Test gcc-4.9 64bit_float_utf8:
|
1246
|
+
stage: test
|
1247
|
+
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
1248
|
+
variables:
|
1249
|
+
CC: gcc-4.9
|
1250
|
+
CXX: g++-4.9
|
1251
|
+
LD: gcc-4.9
|
1252
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
1253
|
+
LDFLAGS: ''
|
1254
|
+
script: env; rake --verbose all test
|
1255
|
+
Test gcc-4.9 64bit_float_word:
|
1256
|
+
stage: test
|
1257
|
+
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
1258
|
+
variables:
|
1259
|
+
CC: gcc-4.9
|
1260
|
+
CXX: g++-4.9
|
1261
|
+
LD: gcc-4.9
|
1262
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
1263
|
+
LDFLAGS: ''
|
1264
|
+
script: env; rake --verbose all test
|
1265
|
+
Test gcc-4.9 64bit_float_word_utf8:
|
926
1266
|
stage: test
|
927
1267
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
928
1268
|
variables:
|
@@ -931,7 +1271,7 @@ Test gcc-4.9 64bit_float_utf8:
|
|
931
1271
|
LD: gcc-4.9
|
932
1272
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
933
1273
|
LDFLAGS: ''
|
934
|
-
script: env;
|
1274
|
+
script: env; rake --verbose all test
|
935
1275
|
Test gcc-4.9 64bit_float_int16:
|
936
1276
|
stage: test
|
937
1277
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -941,7 +1281,7 @@ Test gcc-4.9 64bit_float_int16:
|
|
941
1281
|
LD: gcc-4.9
|
942
1282
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
943
1283
|
LDFLAGS: ''
|
944
|
-
script: env;
|
1284
|
+
script: env; rake --verbose all test
|
945
1285
|
Test gcc-4.9 64bit_float_int16_utf8:
|
946
1286
|
stage: test
|
947
1287
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -951,7 +1291,7 @@ Test gcc-4.9 64bit_float_int16_utf8:
|
|
951
1291
|
LD: gcc-4.9
|
952
1292
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
953
1293
|
LDFLAGS: ''
|
954
|
-
script: env;
|
1294
|
+
script: env; rake --verbose all test
|
955
1295
|
Test gcc-4.9 64bit_float_int64:
|
956
1296
|
stage: test
|
957
1297
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
@@ -959,10 +1299,30 @@ Test gcc-4.9 64bit_float_int64:
|
|
959
1299
|
CC: gcc-4.9
|
960
1300
|
CXX: g++-4.9
|
961
1301
|
LD: gcc-4.9
|
962
|
-
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1
|
1302
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
963
1303
|
LDFLAGS: ''
|
964
|
-
script: env;
|
1304
|
+
script: env; rake --verbose all test
|
965
1305
|
Test gcc-4.9 64bit_float_int64_utf8:
|
1306
|
+
stage: test
|
1307
|
+
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
1308
|
+
variables:
|
1309
|
+
CC: gcc-4.9
|
1310
|
+
CXX: g++-4.9
|
1311
|
+
LD: gcc-4.9
|
1312
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
1313
|
+
LDFLAGS: ''
|
1314
|
+
script: env; rake --verbose all test
|
1315
|
+
Test gcc-4.9 64bit_float_int64_word:
|
1316
|
+
stage: test
|
1317
|
+
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
1318
|
+
variables:
|
1319
|
+
CC: gcc-4.9
|
1320
|
+
CXX: g++-4.9
|
1321
|
+
LD: gcc-4.9
|
1322
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
1323
|
+
LDFLAGS: ''
|
1324
|
+
script: env; rake --verbose all test
|
1325
|
+
Test gcc-4.9 64bit_float_int64_word_utf8:
|
966
1326
|
stage: test
|
967
1327
|
image: registry.gitlab.com/dabroz/mruby:gcc49_0.7
|
968
1328
|
variables:
|
@@ -971,7 +1331,7 @@ Test gcc-4.9 64bit_float_int64_utf8:
|
|
971
1331
|
LD: gcc-4.9
|
972
1332
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
973
1333
|
LDFLAGS: ''
|
974
|
-
script: env;
|
1334
|
+
script: env; rake --verbose all test
|
975
1335
|
Test gcc-5 32bit:
|
976
1336
|
stage: test
|
977
1337
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -979,9 +1339,9 @@ Test gcc-5 32bit:
|
|
979
1339
|
CC: gcc-5
|
980
1340
|
CXX: g++-5
|
981
1341
|
LD: gcc-5
|
982
|
-
CFLAGS: "-m32
|
1342
|
+
CFLAGS: "-m32 "
|
983
1343
|
LDFLAGS: "-m32"
|
984
|
-
script: env;
|
1344
|
+
script: env; rake --verbose all test
|
985
1345
|
Test gcc-5 32bit_utf8:
|
986
1346
|
stage: test
|
987
1347
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -989,9 +1349,9 @@ Test gcc-5 32bit_utf8:
|
|
989
1349
|
CC: gcc-5
|
990
1350
|
CXX: g++-5
|
991
1351
|
LD: gcc-5
|
992
|
-
CFLAGS: "-m32 -
|
1352
|
+
CFLAGS: "-m32 -DMRB_UTF8_STRING=1"
|
993
1353
|
LDFLAGS: "-m32"
|
994
|
-
script: env;
|
1354
|
+
script: env; rake --verbose all test
|
995
1355
|
Test gcc-5 32bit_nan:
|
996
1356
|
stage: test
|
997
1357
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1001,7 +1361,7 @@ Test gcc-5 32bit_nan:
|
|
1001
1361
|
LD: gcc-5
|
1002
1362
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1"
|
1003
1363
|
LDFLAGS: "-m32"
|
1004
|
-
script: env;
|
1364
|
+
script: env; rake --verbose all test
|
1005
1365
|
Test gcc-5 32bit_nan_utf8:
|
1006
1366
|
stage: test
|
1007
1367
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1011,7 +1371,27 @@ Test gcc-5 32bit_nan_utf8:
|
|
1011
1371
|
LD: gcc-5
|
1012
1372
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
1013
1373
|
LDFLAGS: "-m32"
|
1014
|
-
script: env;
|
1374
|
+
script: env; rake --verbose all test
|
1375
|
+
Test gcc-5 32bit_word:
|
1376
|
+
stage: test
|
1377
|
+
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1378
|
+
variables:
|
1379
|
+
CC: gcc-5
|
1380
|
+
CXX: g++-5
|
1381
|
+
LD: gcc-5
|
1382
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1"
|
1383
|
+
LDFLAGS: "-m32"
|
1384
|
+
script: env; rake --verbose all test
|
1385
|
+
Test gcc-5 32bit_word_utf8:
|
1386
|
+
stage: test
|
1387
|
+
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1388
|
+
variables:
|
1389
|
+
CC: gcc-5
|
1390
|
+
CXX: g++-5
|
1391
|
+
LD: gcc-5
|
1392
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1393
|
+
LDFLAGS: "-m32"
|
1394
|
+
script: env; rake --verbose all test
|
1015
1395
|
Test gcc-5 32bit_int16:
|
1016
1396
|
stage: test
|
1017
1397
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1021,7 +1401,7 @@ Test gcc-5 32bit_int16:
|
|
1021
1401
|
LD: gcc-5
|
1022
1402
|
CFLAGS: "-m32 -DMRB_INT16=1"
|
1023
1403
|
LDFLAGS: "-m32"
|
1024
|
-
script: env;
|
1404
|
+
script: env; rake --verbose all test
|
1025
1405
|
Test gcc-5 32bit_int16_utf8:
|
1026
1406
|
stage: test
|
1027
1407
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1031,7 +1411,7 @@ Test gcc-5 32bit_int16_utf8:
|
|
1031
1411
|
LD: gcc-5
|
1032
1412
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
1033
1413
|
LDFLAGS: "-m32"
|
1034
|
-
script: env;
|
1414
|
+
script: env; rake --verbose all test
|
1035
1415
|
Test gcc-5 32bit_int16_nan:
|
1036
1416
|
stage: test
|
1037
1417
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1041,7 +1421,7 @@ Test gcc-5 32bit_int16_nan:
|
|
1041
1421
|
LD: gcc-5
|
1042
1422
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
1043
1423
|
LDFLAGS: "-m32"
|
1044
|
-
script: env;
|
1424
|
+
script: env; rake --verbose all test
|
1045
1425
|
Test gcc-5 32bit_int16_nan_utf8:
|
1046
1426
|
stage: test
|
1047
1427
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1051,7 +1431,7 @@ Test gcc-5 32bit_int16_nan_utf8:
|
|
1051
1431
|
LD: gcc-5
|
1052
1432
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
1053
1433
|
LDFLAGS: "-m32"
|
1054
|
-
script: env;
|
1434
|
+
script: env; rake --verbose all test
|
1055
1435
|
Test gcc-5 32bit_int64:
|
1056
1436
|
stage: test
|
1057
1437
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1061,7 +1441,7 @@ Test gcc-5 32bit_int64:
|
|
1061
1441
|
LD: gcc-5
|
1062
1442
|
CFLAGS: "-m32 -DMRB_INT64=1"
|
1063
1443
|
LDFLAGS: "-m32"
|
1064
|
-
script: env;
|
1444
|
+
script: env; rake --verbose all test
|
1065
1445
|
Test gcc-5 32bit_int64_utf8:
|
1066
1446
|
stage: test
|
1067
1447
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1071,7 +1451,7 @@ Test gcc-5 32bit_int64_utf8:
|
|
1071
1451
|
LD: gcc-5
|
1072
1452
|
CFLAGS: "-m32 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
1073
1453
|
LDFLAGS: "-m32"
|
1074
|
-
script: env;
|
1454
|
+
script: env; rake --verbose all test
|
1075
1455
|
Test gcc-5 32bit_float:
|
1076
1456
|
stage: test
|
1077
1457
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1079,10 +1459,30 @@ Test gcc-5 32bit_float:
|
|
1079
1459
|
CC: gcc-5
|
1080
1460
|
CXX: g++-5
|
1081
1461
|
LD: gcc-5
|
1082
|
-
CFLAGS: "-m32 -DMRB_USE_FLOAT=1
|
1462
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1"
|
1083
1463
|
LDFLAGS: "-m32"
|
1084
|
-
script: env;
|
1464
|
+
script: env; rake --verbose all test
|
1085
1465
|
Test gcc-5 32bit_float_utf8:
|
1466
|
+
stage: test
|
1467
|
+
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1468
|
+
variables:
|
1469
|
+
CC: gcc-5
|
1470
|
+
CXX: g++-5
|
1471
|
+
LD: gcc-5
|
1472
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
1473
|
+
LDFLAGS: "-m32"
|
1474
|
+
script: env; rake --verbose all test
|
1475
|
+
Test gcc-5 32bit_float_word:
|
1476
|
+
stage: test
|
1477
|
+
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1478
|
+
variables:
|
1479
|
+
CC: gcc-5
|
1480
|
+
CXX: g++-5
|
1481
|
+
LD: gcc-5
|
1482
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
1483
|
+
LDFLAGS: "-m32"
|
1484
|
+
script: env; rake --verbose all test
|
1485
|
+
Test gcc-5 32bit_float_word_utf8:
|
1086
1486
|
stage: test
|
1087
1487
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1088
1488
|
variables:
|
@@ -1091,7 +1491,7 @@ Test gcc-5 32bit_float_utf8:
|
|
1091
1491
|
LD: gcc-5
|
1092
1492
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1093
1493
|
LDFLAGS: "-m32"
|
1094
|
-
script: env;
|
1494
|
+
script: env; rake --verbose all test
|
1095
1495
|
Test gcc-5 32bit_float_int16:
|
1096
1496
|
stage: test
|
1097
1497
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1101,7 +1501,7 @@ Test gcc-5 32bit_float_int16:
|
|
1101
1501
|
LD: gcc-5
|
1102
1502
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
1103
1503
|
LDFLAGS: "-m32"
|
1104
|
-
script: env;
|
1504
|
+
script: env; rake --verbose all test
|
1105
1505
|
Test gcc-5 32bit_float_int16_utf8:
|
1106
1506
|
stage: test
|
1107
1507
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1111,7 +1511,7 @@ Test gcc-5 32bit_float_int16_utf8:
|
|
1111
1511
|
LD: gcc-5
|
1112
1512
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
1113
1513
|
LDFLAGS: "-m32"
|
1114
|
-
script: env;
|
1514
|
+
script: env; rake --verbose all test
|
1115
1515
|
Test gcc-5 32bit_float_int64:
|
1116
1516
|
stage: test
|
1117
1517
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1121,7 +1521,7 @@ Test gcc-5 32bit_float_int64:
|
|
1121
1521
|
LD: gcc-5
|
1122
1522
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
1123
1523
|
LDFLAGS: "-m32"
|
1124
|
-
script: env;
|
1524
|
+
script: env; rake --verbose all test
|
1125
1525
|
Test gcc-5 32bit_float_int64_utf8:
|
1126
1526
|
stage: test
|
1127
1527
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1131,7 +1531,7 @@ Test gcc-5 32bit_float_int64_utf8:
|
|
1131
1531
|
LD: gcc-5
|
1132
1532
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
1133
1533
|
LDFLAGS: "-m32"
|
1134
|
-
script: env;
|
1534
|
+
script: env; rake --verbose all test
|
1135
1535
|
Test gcc-5 64bit:
|
1136
1536
|
stage: test
|
1137
1537
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1139,9 +1539,9 @@ Test gcc-5 64bit:
|
|
1139
1539
|
CC: gcc-5
|
1140
1540
|
CXX: g++-5
|
1141
1541
|
LD: gcc-5
|
1142
|
-
CFLAGS:
|
1542
|
+
CFLAGS: ''
|
1143
1543
|
LDFLAGS: ''
|
1144
|
-
script: env;
|
1544
|
+
script: env; rake --verbose all test
|
1145
1545
|
Test gcc-5 64bit_utf8:
|
1146
1546
|
stage: test
|
1147
1547
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1149,9 +1549,9 @@ Test gcc-5 64bit_utf8:
|
|
1149
1549
|
CC: gcc-5
|
1150
1550
|
CXX: g++-5
|
1151
1551
|
LD: gcc-5
|
1152
|
-
CFLAGS: "-
|
1552
|
+
CFLAGS: "-DMRB_UTF8_STRING=1"
|
1153
1553
|
LDFLAGS: ''
|
1154
|
-
script: env;
|
1554
|
+
script: env; rake --verbose all test
|
1155
1555
|
Test gcc-5 64bit_nan:
|
1156
1556
|
stage: test
|
1157
1557
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1161,7 +1561,7 @@ Test gcc-5 64bit_nan:
|
|
1161
1561
|
LD: gcc-5
|
1162
1562
|
CFLAGS: "-DMRB_NAN_BOXING=1"
|
1163
1563
|
LDFLAGS: ''
|
1164
|
-
script: env;
|
1564
|
+
script: env; rake --verbose all test
|
1165
1565
|
Test gcc-5 64bit_nan_utf8:
|
1166
1566
|
stage: test
|
1167
1567
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1171,7 +1571,27 @@ Test gcc-5 64bit_nan_utf8:
|
|
1171
1571
|
LD: gcc-5
|
1172
1572
|
CFLAGS: "-DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
1173
1573
|
LDFLAGS: ''
|
1174
|
-
script: env;
|
1574
|
+
script: env; rake --verbose all test
|
1575
|
+
Test gcc-5 64bit_word:
|
1576
|
+
stage: test
|
1577
|
+
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1578
|
+
variables:
|
1579
|
+
CC: gcc-5
|
1580
|
+
CXX: g++-5
|
1581
|
+
LD: gcc-5
|
1582
|
+
CFLAGS: "-DMRB_WORD_BOXING=1"
|
1583
|
+
LDFLAGS: ''
|
1584
|
+
script: env; rake --verbose all test
|
1585
|
+
Test gcc-5 64bit_word_utf8:
|
1586
|
+
stage: test
|
1587
|
+
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1588
|
+
variables:
|
1589
|
+
CC: gcc-5
|
1590
|
+
CXX: g++-5
|
1591
|
+
LD: gcc-5
|
1592
|
+
CFLAGS: "-DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1593
|
+
LDFLAGS: ''
|
1594
|
+
script: env; rake --verbose all test
|
1175
1595
|
Test gcc-5 64bit_int16:
|
1176
1596
|
stage: test
|
1177
1597
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1181,7 +1601,7 @@ Test gcc-5 64bit_int16:
|
|
1181
1601
|
LD: gcc-5
|
1182
1602
|
CFLAGS: "-DMRB_INT16=1"
|
1183
1603
|
LDFLAGS: ''
|
1184
|
-
script: env;
|
1604
|
+
script: env; rake --verbose all test
|
1185
1605
|
Test gcc-5 64bit_int16_utf8:
|
1186
1606
|
stage: test
|
1187
1607
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1191,7 +1611,7 @@ Test gcc-5 64bit_int16_utf8:
|
|
1191
1611
|
LD: gcc-5
|
1192
1612
|
CFLAGS: "-DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
1193
1613
|
LDFLAGS: ''
|
1194
|
-
script: env;
|
1614
|
+
script: env; rake --verbose all test
|
1195
1615
|
Test gcc-5 64bit_int16_nan:
|
1196
1616
|
stage: test
|
1197
1617
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1201,7 +1621,7 @@ Test gcc-5 64bit_int16_nan:
|
|
1201
1621
|
LD: gcc-5
|
1202
1622
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
1203
1623
|
LDFLAGS: ''
|
1204
|
-
script: env;
|
1624
|
+
script: env; rake --verbose all test
|
1205
1625
|
Test gcc-5 64bit_int16_nan_utf8:
|
1206
1626
|
stage: test
|
1207
1627
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1211,7 +1631,7 @@ Test gcc-5 64bit_int16_nan_utf8:
|
|
1211
1631
|
LD: gcc-5
|
1212
1632
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
1213
1633
|
LDFLAGS: ''
|
1214
|
-
script: env;
|
1634
|
+
script: env; rake --verbose all test
|
1215
1635
|
Test gcc-5 64bit_int64:
|
1216
1636
|
stage: test
|
1217
1637
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1219,10 +1639,30 @@ Test gcc-5 64bit_int64:
|
|
1219
1639
|
CC: gcc-5
|
1220
1640
|
CXX: g++-5
|
1221
1641
|
LD: gcc-5
|
1222
|
-
CFLAGS: "-DMRB_INT64=1
|
1642
|
+
CFLAGS: "-DMRB_INT64=1"
|
1223
1643
|
LDFLAGS: ''
|
1224
|
-
script: env;
|
1644
|
+
script: env; rake --verbose all test
|
1225
1645
|
Test gcc-5 64bit_int64_utf8:
|
1646
|
+
stage: test
|
1647
|
+
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1648
|
+
variables:
|
1649
|
+
CC: gcc-5
|
1650
|
+
CXX: g++-5
|
1651
|
+
LD: gcc-5
|
1652
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
1653
|
+
LDFLAGS: ''
|
1654
|
+
script: env; rake --verbose all test
|
1655
|
+
Test gcc-5 64bit_int64_word:
|
1656
|
+
stage: test
|
1657
|
+
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1658
|
+
variables:
|
1659
|
+
CC: gcc-5
|
1660
|
+
CXX: g++-5
|
1661
|
+
LD: gcc-5
|
1662
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
1663
|
+
LDFLAGS: ''
|
1664
|
+
script: env; rake --verbose all test
|
1665
|
+
Test gcc-5 64bit_int64_word_utf8:
|
1226
1666
|
stage: test
|
1227
1667
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1228
1668
|
variables:
|
@@ -1231,7 +1671,7 @@ Test gcc-5 64bit_int64_utf8:
|
|
1231
1671
|
LD: gcc-5
|
1232
1672
|
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1233
1673
|
LDFLAGS: ''
|
1234
|
-
script: env;
|
1674
|
+
script: env; rake --verbose all test
|
1235
1675
|
Test gcc-5 64bit_float:
|
1236
1676
|
stage: test
|
1237
1677
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1239,10 +1679,30 @@ Test gcc-5 64bit_float:
|
|
1239
1679
|
CC: gcc-5
|
1240
1680
|
CXX: g++-5
|
1241
1681
|
LD: gcc-5
|
1242
|
-
CFLAGS: "-DMRB_USE_FLOAT=1
|
1682
|
+
CFLAGS: "-DMRB_USE_FLOAT=1"
|
1243
1683
|
LDFLAGS: ''
|
1244
|
-
script: env;
|
1684
|
+
script: env; rake --verbose all test
|
1245
1685
|
Test gcc-5 64bit_float_utf8:
|
1686
|
+
stage: test
|
1687
|
+
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1688
|
+
variables:
|
1689
|
+
CC: gcc-5
|
1690
|
+
CXX: g++-5
|
1691
|
+
LD: gcc-5
|
1692
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
1693
|
+
LDFLAGS: ''
|
1694
|
+
script: env; rake --verbose all test
|
1695
|
+
Test gcc-5 64bit_float_word:
|
1696
|
+
stage: test
|
1697
|
+
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1698
|
+
variables:
|
1699
|
+
CC: gcc-5
|
1700
|
+
CXX: g++-5
|
1701
|
+
LD: gcc-5
|
1702
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
1703
|
+
LDFLAGS: ''
|
1704
|
+
script: env; rake --verbose all test
|
1705
|
+
Test gcc-5 64bit_float_word_utf8:
|
1246
1706
|
stage: test
|
1247
1707
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1248
1708
|
variables:
|
@@ -1251,7 +1711,7 @@ Test gcc-5 64bit_float_utf8:
|
|
1251
1711
|
LD: gcc-5
|
1252
1712
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1253
1713
|
LDFLAGS: ''
|
1254
|
-
script: env;
|
1714
|
+
script: env; rake --verbose all test
|
1255
1715
|
Test gcc-5 64bit_float_int16:
|
1256
1716
|
stage: test
|
1257
1717
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1261,7 +1721,7 @@ Test gcc-5 64bit_float_int16:
|
|
1261
1721
|
LD: gcc-5
|
1262
1722
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
1263
1723
|
LDFLAGS: ''
|
1264
|
-
script: env;
|
1724
|
+
script: env; rake --verbose all test
|
1265
1725
|
Test gcc-5 64bit_float_int16_utf8:
|
1266
1726
|
stage: test
|
1267
1727
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1271,7 +1731,7 @@ Test gcc-5 64bit_float_int16_utf8:
|
|
1271
1731
|
LD: gcc-5
|
1272
1732
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
1273
1733
|
LDFLAGS: ''
|
1274
|
-
script: env;
|
1734
|
+
script: env; rake --verbose all test
|
1275
1735
|
Test gcc-5 64bit_float_int64:
|
1276
1736
|
stage: test
|
1277
1737
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
@@ -1279,10 +1739,30 @@ Test gcc-5 64bit_float_int64:
|
|
1279
1739
|
CC: gcc-5
|
1280
1740
|
CXX: g++-5
|
1281
1741
|
LD: gcc-5
|
1282
|
-
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1
|
1742
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
1283
1743
|
LDFLAGS: ''
|
1284
|
-
script: env;
|
1744
|
+
script: env; rake --verbose all test
|
1285
1745
|
Test gcc-5 64bit_float_int64_utf8:
|
1746
|
+
stage: test
|
1747
|
+
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1748
|
+
variables:
|
1749
|
+
CC: gcc-5
|
1750
|
+
CXX: g++-5
|
1751
|
+
LD: gcc-5
|
1752
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
1753
|
+
LDFLAGS: ''
|
1754
|
+
script: env; rake --verbose all test
|
1755
|
+
Test gcc-5 64bit_float_int64_word:
|
1756
|
+
stage: test
|
1757
|
+
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1758
|
+
variables:
|
1759
|
+
CC: gcc-5
|
1760
|
+
CXX: g++-5
|
1761
|
+
LD: gcc-5
|
1762
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
1763
|
+
LDFLAGS: ''
|
1764
|
+
script: env; rake --verbose all test
|
1765
|
+
Test gcc-5 64bit_float_int64_word_utf8:
|
1286
1766
|
stage: test
|
1287
1767
|
image: registry.gitlab.com/dabroz/mruby:gcc5_0.7
|
1288
1768
|
variables:
|
@@ -1291,7 +1771,7 @@ Test gcc-5 64bit_float_int64_utf8:
|
|
1291
1771
|
LD: gcc-5
|
1292
1772
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1293
1773
|
LDFLAGS: ''
|
1294
|
-
script: env;
|
1774
|
+
script: env; rake --verbose all test
|
1295
1775
|
Test gcc-6 32bit:
|
1296
1776
|
stage: test
|
1297
1777
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1299,9 +1779,9 @@ Test gcc-6 32bit:
|
|
1299
1779
|
CC: gcc-6
|
1300
1780
|
CXX: g++-6
|
1301
1781
|
LD: gcc-6
|
1302
|
-
CFLAGS: "-m32
|
1782
|
+
CFLAGS: "-m32 "
|
1303
1783
|
LDFLAGS: "-m32"
|
1304
|
-
script: env;
|
1784
|
+
script: env; rake --verbose all test
|
1305
1785
|
Test gcc-6 32bit_utf8:
|
1306
1786
|
stage: test
|
1307
1787
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1309,9 +1789,9 @@ Test gcc-6 32bit_utf8:
|
|
1309
1789
|
CC: gcc-6
|
1310
1790
|
CXX: g++-6
|
1311
1791
|
LD: gcc-6
|
1312
|
-
CFLAGS: "-m32 -
|
1792
|
+
CFLAGS: "-m32 -DMRB_UTF8_STRING=1"
|
1313
1793
|
LDFLAGS: "-m32"
|
1314
|
-
script: env;
|
1794
|
+
script: env; rake --verbose all test
|
1315
1795
|
Test gcc-6 32bit_nan:
|
1316
1796
|
stage: test
|
1317
1797
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1321,7 +1801,7 @@ Test gcc-6 32bit_nan:
|
|
1321
1801
|
LD: gcc-6
|
1322
1802
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1"
|
1323
1803
|
LDFLAGS: "-m32"
|
1324
|
-
script: env;
|
1804
|
+
script: env; rake --verbose all test
|
1325
1805
|
Test gcc-6 32bit_nan_utf8:
|
1326
1806
|
stage: test
|
1327
1807
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1331,7 +1811,27 @@ Test gcc-6 32bit_nan_utf8:
|
|
1331
1811
|
LD: gcc-6
|
1332
1812
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
1333
1813
|
LDFLAGS: "-m32"
|
1334
|
-
script: env;
|
1814
|
+
script: env; rake --verbose all test
|
1815
|
+
Test gcc-6 32bit_word:
|
1816
|
+
stage: test
|
1817
|
+
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
1818
|
+
variables:
|
1819
|
+
CC: gcc-6
|
1820
|
+
CXX: g++-6
|
1821
|
+
LD: gcc-6
|
1822
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1"
|
1823
|
+
LDFLAGS: "-m32"
|
1824
|
+
script: env; rake --verbose all test
|
1825
|
+
Test gcc-6 32bit_word_utf8:
|
1826
|
+
stage: test
|
1827
|
+
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
1828
|
+
variables:
|
1829
|
+
CC: gcc-6
|
1830
|
+
CXX: g++-6
|
1831
|
+
LD: gcc-6
|
1832
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1833
|
+
LDFLAGS: "-m32"
|
1834
|
+
script: env; rake --verbose all test
|
1335
1835
|
Test gcc-6 32bit_int16:
|
1336
1836
|
stage: test
|
1337
1837
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1341,7 +1841,7 @@ Test gcc-6 32bit_int16:
|
|
1341
1841
|
LD: gcc-6
|
1342
1842
|
CFLAGS: "-m32 -DMRB_INT16=1"
|
1343
1843
|
LDFLAGS: "-m32"
|
1344
|
-
script: env;
|
1844
|
+
script: env; rake --verbose all test
|
1345
1845
|
Test gcc-6 32bit_int16_utf8:
|
1346
1846
|
stage: test
|
1347
1847
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1351,7 +1851,7 @@ Test gcc-6 32bit_int16_utf8:
|
|
1351
1851
|
LD: gcc-6
|
1352
1852
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
1353
1853
|
LDFLAGS: "-m32"
|
1354
|
-
script: env;
|
1854
|
+
script: env; rake --verbose all test
|
1355
1855
|
Test gcc-6 32bit_int16_nan:
|
1356
1856
|
stage: test
|
1357
1857
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1361,7 +1861,7 @@ Test gcc-6 32bit_int16_nan:
|
|
1361
1861
|
LD: gcc-6
|
1362
1862
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
1363
1863
|
LDFLAGS: "-m32"
|
1364
|
-
script: env;
|
1864
|
+
script: env; rake --verbose all test
|
1365
1865
|
Test gcc-6 32bit_int16_nan_utf8:
|
1366
1866
|
stage: test
|
1367
1867
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1371,7 +1871,7 @@ Test gcc-6 32bit_int16_nan_utf8:
|
|
1371
1871
|
LD: gcc-6
|
1372
1872
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
1373
1873
|
LDFLAGS: "-m32"
|
1374
|
-
script: env;
|
1874
|
+
script: env; rake --verbose all test
|
1375
1875
|
Test gcc-6 32bit_int64:
|
1376
1876
|
stage: test
|
1377
1877
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1381,7 +1881,7 @@ Test gcc-6 32bit_int64:
|
|
1381
1881
|
LD: gcc-6
|
1382
1882
|
CFLAGS: "-m32 -DMRB_INT64=1"
|
1383
1883
|
LDFLAGS: "-m32"
|
1384
|
-
script: env;
|
1884
|
+
script: env; rake --verbose all test
|
1385
1885
|
Test gcc-6 32bit_int64_utf8:
|
1386
1886
|
stage: test
|
1387
1887
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1391,7 +1891,7 @@ Test gcc-6 32bit_int64_utf8:
|
|
1391
1891
|
LD: gcc-6
|
1392
1892
|
CFLAGS: "-m32 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
1393
1893
|
LDFLAGS: "-m32"
|
1394
|
-
script: env;
|
1894
|
+
script: env; rake --verbose all test
|
1395
1895
|
Test gcc-6 32bit_float:
|
1396
1896
|
stage: test
|
1397
1897
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1399,10 +1899,30 @@ Test gcc-6 32bit_float:
|
|
1399
1899
|
CC: gcc-6
|
1400
1900
|
CXX: g++-6
|
1401
1901
|
LD: gcc-6
|
1402
|
-
CFLAGS: "-m32 -DMRB_USE_FLOAT=1
|
1902
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1"
|
1403
1903
|
LDFLAGS: "-m32"
|
1404
|
-
script: env;
|
1904
|
+
script: env; rake --verbose all test
|
1405
1905
|
Test gcc-6 32bit_float_utf8:
|
1906
|
+
stage: test
|
1907
|
+
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
1908
|
+
variables:
|
1909
|
+
CC: gcc-6
|
1910
|
+
CXX: g++-6
|
1911
|
+
LD: gcc-6
|
1912
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
1913
|
+
LDFLAGS: "-m32"
|
1914
|
+
script: env; rake --verbose all test
|
1915
|
+
Test gcc-6 32bit_float_word:
|
1916
|
+
stage: test
|
1917
|
+
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
1918
|
+
variables:
|
1919
|
+
CC: gcc-6
|
1920
|
+
CXX: g++-6
|
1921
|
+
LD: gcc-6
|
1922
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
1923
|
+
LDFLAGS: "-m32"
|
1924
|
+
script: env; rake --verbose all test
|
1925
|
+
Test gcc-6 32bit_float_word_utf8:
|
1406
1926
|
stage: test
|
1407
1927
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
1408
1928
|
variables:
|
@@ -1411,7 +1931,7 @@ Test gcc-6 32bit_float_utf8:
|
|
1411
1931
|
LD: gcc-6
|
1412
1932
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1413
1933
|
LDFLAGS: "-m32"
|
1414
|
-
script: env;
|
1934
|
+
script: env; rake --verbose all test
|
1415
1935
|
Test gcc-6 32bit_float_int16:
|
1416
1936
|
stage: test
|
1417
1937
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1421,7 +1941,7 @@ Test gcc-6 32bit_float_int16:
|
|
1421
1941
|
LD: gcc-6
|
1422
1942
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
1423
1943
|
LDFLAGS: "-m32"
|
1424
|
-
script: env;
|
1944
|
+
script: env; rake --verbose all test
|
1425
1945
|
Test gcc-6 32bit_float_int16_utf8:
|
1426
1946
|
stage: test
|
1427
1947
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1431,7 +1951,7 @@ Test gcc-6 32bit_float_int16_utf8:
|
|
1431
1951
|
LD: gcc-6
|
1432
1952
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
1433
1953
|
LDFLAGS: "-m32"
|
1434
|
-
script: env;
|
1954
|
+
script: env; rake --verbose all test
|
1435
1955
|
Test gcc-6 32bit_float_int64:
|
1436
1956
|
stage: test
|
1437
1957
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1441,7 +1961,7 @@ Test gcc-6 32bit_float_int64:
|
|
1441
1961
|
LD: gcc-6
|
1442
1962
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
1443
1963
|
LDFLAGS: "-m32"
|
1444
|
-
script: env;
|
1964
|
+
script: env; rake --verbose all test
|
1445
1965
|
Test gcc-6 32bit_float_int64_utf8:
|
1446
1966
|
stage: test
|
1447
1967
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1451,7 +1971,7 @@ Test gcc-6 32bit_float_int64_utf8:
|
|
1451
1971
|
LD: gcc-6
|
1452
1972
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
1453
1973
|
LDFLAGS: "-m32"
|
1454
|
-
script: env;
|
1974
|
+
script: env; rake --verbose all test
|
1455
1975
|
Test gcc-6 64bit:
|
1456
1976
|
stage: test
|
1457
1977
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1459,9 +1979,9 @@ Test gcc-6 64bit:
|
|
1459
1979
|
CC: gcc-6
|
1460
1980
|
CXX: g++-6
|
1461
1981
|
LD: gcc-6
|
1462
|
-
CFLAGS:
|
1982
|
+
CFLAGS: ''
|
1463
1983
|
LDFLAGS: ''
|
1464
|
-
script: env;
|
1984
|
+
script: env; rake --verbose all test
|
1465
1985
|
Test gcc-6 64bit_utf8:
|
1466
1986
|
stage: test
|
1467
1987
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1469,9 +1989,9 @@ Test gcc-6 64bit_utf8:
|
|
1469
1989
|
CC: gcc-6
|
1470
1990
|
CXX: g++-6
|
1471
1991
|
LD: gcc-6
|
1472
|
-
CFLAGS: "-
|
1992
|
+
CFLAGS: "-DMRB_UTF8_STRING=1"
|
1473
1993
|
LDFLAGS: ''
|
1474
|
-
script: env;
|
1994
|
+
script: env; rake --verbose all test
|
1475
1995
|
Test gcc-6 64bit_nan:
|
1476
1996
|
stage: test
|
1477
1997
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1481,7 +2001,7 @@ Test gcc-6 64bit_nan:
|
|
1481
2001
|
LD: gcc-6
|
1482
2002
|
CFLAGS: "-DMRB_NAN_BOXING=1"
|
1483
2003
|
LDFLAGS: ''
|
1484
|
-
script: env;
|
2004
|
+
script: env; rake --verbose all test
|
1485
2005
|
Test gcc-6 64bit_nan_utf8:
|
1486
2006
|
stage: test
|
1487
2007
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1491,7 +2011,27 @@ Test gcc-6 64bit_nan_utf8:
|
|
1491
2011
|
LD: gcc-6
|
1492
2012
|
CFLAGS: "-DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
1493
2013
|
LDFLAGS: ''
|
1494
|
-
script: env;
|
2014
|
+
script: env; rake --verbose all test
|
2015
|
+
Test gcc-6 64bit_word:
|
2016
|
+
stage: test
|
2017
|
+
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
2018
|
+
variables:
|
2019
|
+
CC: gcc-6
|
2020
|
+
CXX: g++-6
|
2021
|
+
LD: gcc-6
|
2022
|
+
CFLAGS: "-DMRB_WORD_BOXING=1"
|
2023
|
+
LDFLAGS: ''
|
2024
|
+
script: env; rake --verbose all test
|
2025
|
+
Test gcc-6 64bit_word_utf8:
|
2026
|
+
stage: test
|
2027
|
+
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
2028
|
+
variables:
|
2029
|
+
CC: gcc-6
|
2030
|
+
CXX: g++-6
|
2031
|
+
LD: gcc-6
|
2032
|
+
CFLAGS: "-DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2033
|
+
LDFLAGS: ''
|
2034
|
+
script: env; rake --verbose all test
|
1495
2035
|
Test gcc-6 64bit_int16:
|
1496
2036
|
stage: test
|
1497
2037
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1501,7 +2041,7 @@ Test gcc-6 64bit_int16:
|
|
1501
2041
|
LD: gcc-6
|
1502
2042
|
CFLAGS: "-DMRB_INT16=1"
|
1503
2043
|
LDFLAGS: ''
|
1504
|
-
script: env;
|
2044
|
+
script: env; rake --verbose all test
|
1505
2045
|
Test gcc-6 64bit_int16_utf8:
|
1506
2046
|
stage: test
|
1507
2047
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1511,7 +2051,7 @@ Test gcc-6 64bit_int16_utf8:
|
|
1511
2051
|
LD: gcc-6
|
1512
2052
|
CFLAGS: "-DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
1513
2053
|
LDFLAGS: ''
|
1514
|
-
script: env;
|
2054
|
+
script: env; rake --verbose all test
|
1515
2055
|
Test gcc-6 64bit_int16_nan:
|
1516
2056
|
stage: test
|
1517
2057
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1521,7 +2061,7 @@ Test gcc-6 64bit_int16_nan:
|
|
1521
2061
|
LD: gcc-6
|
1522
2062
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
1523
2063
|
LDFLAGS: ''
|
1524
|
-
script: env;
|
2064
|
+
script: env; rake --verbose all test
|
1525
2065
|
Test gcc-6 64bit_int16_nan_utf8:
|
1526
2066
|
stage: test
|
1527
2067
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1531,7 +2071,7 @@ Test gcc-6 64bit_int16_nan_utf8:
|
|
1531
2071
|
LD: gcc-6
|
1532
2072
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
1533
2073
|
LDFLAGS: ''
|
1534
|
-
script: env;
|
2074
|
+
script: env; rake --verbose all test
|
1535
2075
|
Test gcc-6 64bit_int64:
|
1536
2076
|
stage: test
|
1537
2077
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1539,10 +2079,30 @@ Test gcc-6 64bit_int64:
|
|
1539
2079
|
CC: gcc-6
|
1540
2080
|
CXX: g++-6
|
1541
2081
|
LD: gcc-6
|
1542
|
-
CFLAGS: "-DMRB_INT64=1
|
2082
|
+
CFLAGS: "-DMRB_INT64=1"
|
1543
2083
|
LDFLAGS: ''
|
1544
|
-
script: env;
|
2084
|
+
script: env; rake --verbose all test
|
1545
2085
|
Test gcc-6 64bit_int64_utf8:
|
2086
|
+
stage: test
|
2087
|
+
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
2088
|
+
variables:
|
2089
|
+
CC: gcc-6
|
2090
|
+
CXX: g++-6
|
2091
|
+
LD: gcc-6
|
2092
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
2093
|
+
LDFLAGS: ''
|
2094
|
+
script: env; rake --verbose all test
|
2095
|
+
Test gcc-6 64bit_int64_word:
|
2096
|
+
stage: test
|
2097
|
+
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
2098
|
+
variables:
|
2099
|
+
CC: gcc-6
|
2100
|
+
CXX: g++-6
|
2101
|
+
LD: gcc-6
|
2102
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
2103
|
+
LDFLAGS: ''
|
2104
|
+
script: env; rake --verbose all test
|
2105
|
+
Test gcc-6 64bit_int64_word_utf8:
|
1546
2106
|
stage: test
|
1547
2107
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
1548
2108
|
variables:
|
@@ -1551,7 +2111,7 @@ Test gcc-6 64bit_int64_utf8:
|
|
1551
2111
|
LD: gcc-6
|
1552
2112
|
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1553
2113
|
LDFLAGS: ''
|
1554
|
-
script: env;
|
2114
|
+
script: env; rake --verbose all test
|
1555
2115
|
Test gcc-6 64bit_float:
|
1556
2116
|
stage: test
|
1557
2117
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1559,10 +2119,30 @@ Test gcc-6 64bit_float:
|
|
1559
2119
|
CC: gcc-6
|
1560
2120
|
CXX: g++-6
|
1561
2121
|
LD: gcc-6
|
1562
|
-
CFLAGS: "-DMRB_USE_FLOAT=1
|
2122
|
+
CFLAGS: "-DMRB_USE_FLOAT=1"
|
1563
2123
|
LDFLAGS: ''
|
1564
|
-
script: env;
|
2124
|
+
script: env; rake --verbose all test
|
1565
2125
|
Test gcc-6 64bit_float_utf8:
|
2126
|
+
stage: test
|
2127
|
+
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
2128
|
+
variables:
|
2129
|
+
CC: gcc-6
|
2130
|
+
CXX: g++-6
|
2131
|
+
LD: gcc-6
|
2132
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
2133
|
+
LDFLAGS: ''
|
2134
|
+
script: env; rake --verbose all test
|
2135
|
+
Test gcc-6 64bit_float_word:
|
2136
|
+
stage: test
|
2137
|
+
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
2138
|
+
variables:
|
2139
|
+
CC: gcc-6
|
2140
|
+
CXX: g++-6
|
2141
|
+
LD: gcc-6
|
2142
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
2143
|
+
LDFLAGS: ''
|
2144
|
+
script: env; rake --verbose all test
|
2145
|
+
Test gcc-6 64bit_float_word_utf8:
|
1566
2146
|
stage: test
|
1567
2147
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
1568
2148
|
variables:
|
@@ -1571,7 +2151,7 @@ Test gcc-6 64bit_float_utf8:
|
|
1571
2151
|
LD: gcc-6
|
1572
2152
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1573
2153
|
LDFLAGS: ''
|
1574
|
-
script: env;
|
2154
|
+
script: env; rake --verbose all test
|
1575
2155
|
Test gcc-6 64bit_float_int16:
|
1576
2156
|
stage: test
|
1577
2157
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1581,7 +2161,7 @@ Test gcc-6 64bit_float_int16:
|
|
1581
2161
|
LD: gcc-6
|
1582
2162
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
1583
2163
|
LDFLAGS: ''
|
1584
|
-
script: env;
|
2164
|
+
script: env; rake --verbose all test
|
1585
2165
|
Test gcc-6 64bit_float_int16_utf8:
|
1586
2166
|
stage: test
|
1587
2167
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1591,7 +2171,7 @@ Test gcc-6 64bit_float_int16_utf8:
|
|
1591
2171
|
LD: gcc-6
|
1592
2172
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
1593
2173
|
LDFLAGS: ''
|
1594
|
-
script: env;
|
2174
|
+
script: env; rake --verbose all test
|
1595
2175
|
Test gcc-6 64bit_float_int64:
|
1596
2176
|
stage: test
|
1597
2177
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
@@ -1599,10 +2179,30 @@ Test gcc-6 64bit_float_int64:
|
|
1599
2179
|
CC: gcc-6
|
1600
2180
|
CXX: g++-6
|
1601
2181
|
LD: gcc-6
|
1602
|
-
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1
|
2182
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
1603
2183
|
LDFLAGS: ''
|
1604
|
-
script: env;
|
2184
|
+
script: env; rake --verbose all test
|
1605
2185
|
Test gcc-6 64bit_float_int64_utf8:
|
2186
|
+
stage: test
|
2187
|
+
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
2188
|
+
variables:
|
2189
|
+
CC: gcc-6
|
2190
|
+
CXX: g++-6
|
2191
|
+
LD: gcc-6
|
2192
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
2193
|
+
LDFLAGS: ''
|
2194
|
+
script: env; rake --verbose all test
|
2195
|
+
Test gcc-6 64bit_float_int64_word:
|
2196
|
+
stage: test
|
2197
|
+
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
2198
|
+
variables:
|
2199
|
+
CC: gcc-6
|
2200
|
+
CXX: g++-6
|
2201
|
+
LD: gcc-6
|
2202
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
2203
|
+
LDFLAGS: ''
|
2204
|
+
script: env; rake --verbose all test
|
2205
|
+
Test gcc-6 64bit_float_int64_word_utf8:
|
1606
2206
|
stage: test
|
1607
2207
|
image: registry.gitlab.com/dabroz/mruby:gcc6_0.7
|
1608
2208
|
variables:
|
@@ -1611,7 +2211,7 @@ Test gcc-6 64bit_float_int64_utf8:
|
|
1611
2211
|
LD: gcc-6
|
1612
2212
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1613
2213
|
LDFLAGS: ''
|
1614
|
-
script: env;
|
2214
|
+
script: env; rake --verbose all test
|
1615
2215
|
Test clang-3.5 32bit:
|
1616
2216
|
stage: test
|
1617
2217
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1619,9 +2219,9 @@ Test clang-3.5 32bit:
|
|
1619
2219
|
CC: clang-3.5
|
1620
2220
|
CXX: clang++-3.5
|
1621
2221
|
LD: clang-3.5
|
1622
|
-
CFLAGS: "-m32
|
2222
|
+
CFLAGS: "-m32 "
|
1623
2223
|
LDFLAGS: "-m32"
|
1624
|
-
script: env;
|
2224
|
+
script: env; rake --verbose all test
|
1625
2225
|
Test clang-3.5 32bit_utf8:
|
1626
2226
|
stage: test
|
1627
2227
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1629,9 +2229,9 @@ Test clang-3.5 32bit_utf8:
|
|
1629
2229
|
CC: clang-3.5
|
1630
2230
|
CXX: clang++-3.5
|
1631
2231
|
LD: clang-3.5
|
1632
|
-
CFLAGS: "-m32 -
|
2232
|
+
CFLAGS: "-m32 -DMRB_UTF8_STRING=1"
|
1633
2233
|
LDFLAGS: "-m32"
|
1634
|
-
script: env;
|
2234
|
+
script: env; rake --verbose all test
|
1635
2235
|
Test clang-3.5 32bit_nan:
|
1636
2236
|
stage: test
|
1637
2237
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1641,7 +2241,7 @@ Test clang-3.5 32bit_nan:
|
|
1641
2241
|
LD: clang-3.5
|
1642
2242
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1"
|
1643
2243
|
LDFLAGS: "-m32"
|
1644
|
-
script: env;
|
2244
|
+
script: env; rake --verbose all test
|
1645
2245
|
Test clang-3.5 32bit_nan_utf8:
|
1646
2246
|
stage: test
|
1647
2247
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1651,27 +2251,47 @@ Test clang-3.5 32bit_nan_utf8:
|
|
1651
2251
|
LD: clang-3.5
|
1652
2252
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
1653
2253
|
LDFLAGS: "-m32"
|
1654
|
-
script: env;
|
1655
|
-
Test clang-3.5
|
2254
|
+
script: env; rake --verbose all test
|
2255
|
+
Test clang-3.5 32bit_word:
|
1656
2256
|
stage: test
|
1657
2257
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
1658
2258
|
variables:
|
1659
2259
|
CC: clang-3.5
|
1660
2260
|
CXX: clang++-3.5
|
1661
2261
|
LD: clang-3.5
|
1662
|
-
CFLAGS: "-m32 -
|
2262
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1"
|
1663
2263
|
LDFLAGS: "-m32"
|
1664
|
-
script: env;
|
1665
|
-
Test clang-3.5
|
2264
|
+
script: env; rake --verbose all test
|
2265
|
+
Test clang-3.5 32bit_word_utf8:
|
1666
2266
|
stage: test
|
1667
2267
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
1668
2268
|
variables:
|
1669
2269
|
CC: clang-3.5
|
1670
2270
|
CXX: clang++-3.5
|
1671
2271
|
LD: clang-3.5
|
1672
|
-
CFLAGS: "-m32 -
|
2272
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1673
2273
|
LDFLAGS: "-m32"
|
1674
|
-
script: env;
|
2274
|
+
script: env; rake --verbose all test
|
2275
|
+
Test clang-3.5 32bit_int16:
|
2276
|
+
stage: test
|
2277
|
+
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
2278
|
+
variables:
|
2279
|
+
CC: clang-3.5
|
2280
|
+
CXX: clang++-3.5
|
2281
|
+
LD: clang-3.5
|
2282
|
+
CFLAGS: "-m32 -DMRB_INT16=1"
|
2283
|
+
LDFLAGS: "-m32"
|
2284
|
+
script: env; rake --verbose all test
|
2285
|
+
Test clang-3.5 32bit_int16_utf8:
|
2286
|
+
stage: test
|
2287
|
+
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
2288
|
+
variables:
|
2289
|
+
CC: clang-3.5
|
2290
|
+
CXX: clang++-3.5
|
2291
|
+
LD: clang-3.5
|
2292
|
+
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
2293
|
+
LDFLAGS: "-m32"
|
2294
|
+
script: env; rake --verbose all test
|
1675
2295
|
Test clang-3.5 32bit_int16_nan:
|
1676
2296
|
stage: test
|
1677
2297
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1681,7 +2301,7 @@ Test clang-3.5 32bit_int16_nan:
|
|
1681
2301
|
LD: clang-3.5
|
1682
2302
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
1683
2303
|
LDFLAGS: "-m32"
|
1684
|
-
script: env;
|
2304
|
+
script: env; rake --verbose all test
|
1685
2305
|
Test clang-3.5 32bit_int16_nan_utf8:
|
1686
2306
|
stage: test
|
1687
2307
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1691,7 +2311,7 @@ Test clang-3.5 32bit_int16_nan_utf8:
|
|
1691
2311
|
LD: clang-3.5
|
1692
2312
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
1693
2313
|
LDFLAGS: "-m32"
|
1694
|
-
script: env;
|
2314
|
+
script: env; rake --verbose all test
|
1695
2315
|
Test clang-3.5 32bit_int64:
|
1696
2316
|
stage: test
|
1697
2317
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1701,7 +2321,7 @@ Test clang-3.5 32bit_int64:
|
|
1701
2321
|
LD: clang-3.5
|
1702
2322
|
CFLAGS: "-m32 -DMRB_INT64=1"
|
1703
2323
|
LDFLAGS: "-m32"
|
1704
|
-
script: env;
|
2324
|
+
script: env; rake --verbose all test
|
1705
2325
|
Test clang-3.5 32bit_int64_utf8:
|
1706
2326
|
stage: test
|
1707
2327
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1711,7 +2331,7 @@ Test clang-3.5 32bit_int64_utf8:
|
|
1711
2331
|
LD: clang-3.5
|
1712
2332
|
CFLAGS: "-m32 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
1713
2333
|
LDFLAGS: "-m32"
|
1714
|
-
script: env;
|
2334
|
+
script: env; rake --verbose all test
|
1715
2335
|
Test clang-3.5 32bit_float:
|
1716
2336
|
stage: test
|
1717
2337
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1719,10 +2339,30 @@ Test clang-3.5 32bit_float:
|
|
1719
2339
|
CC: clang-3.5
|
1720
2340
|
CXX: clang++-3.5
|
1721
2341
|
LD: clang-3.5
|
1722
|
-
CFLAGS: "-m32 -DMRB_USE_FLOAT=1
|
2342
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1"
|
1723
2343
|
LDFLAGS: "-m32"
|
1724
|
-
script: env;
|
2344
|
+
script: env; rake --verbose all test
|
1725
2345
|
Test clang-3.5 32bit_float_utf8:
|
2346
|
+
stage: test
|
2347
|
+
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
2348
|
+
variables:
|
2349
|
+
CC: clang-3.5
|
2350
|
+
CXX: clang++-3.5
|
2351
|
+
LD: clang-3.5
|
2352
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
2353
|
+
LDFLAGS: "-m32"
|
2354
|
+
script: env; rake --verbose all test
|
2355
|
+
Test clang-3.5 32bit_float_word:
|
2356
|
+
stage: test
|
2357
|
+
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
2358
|
+
variables:
|
2359
|
+
CC: clang-3.5
|
2360
|
+
CXX: clang++-3.5
|
2361
|
+
LD: clang-3.5
|
2362
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
2363
|
+
LDFLAGS: "-m32"
|
2364
|
+
script: env; rake --verbose all test
|
2365
|
+
Test clang-3.5 32bit_float_word_utf8:
|
1726
2366
|
stage: test
|
1727
2367
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
1728
2368
|
variables:
|
@@ -1731,7 +2371,7 @@ Test clang-3.5 32bit_float_utf8:
|
|
1731
2371
|
LD: clang-3.5
|
1732
2372
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1733
2373
|
LDFLAGS: "-m32"
|
1734
|
-
script: env;
|
2374
|
+
script: env; rake --verbose all test
|
1735
2375
|
Test clang-3.5 32bit_float_int16:
|
1736
2376
|
stage: test
|
1737
2377
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1741,7 +2381,7 @@ Test clang-3.5 32bit_float_int16:
|
|
1741
2381
|
LD: clang-3.5
|
1742
2382
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
1743
2383
|
LDFLAGS: "-m32"
|
1744
|
-
script: env;
|
2384
|
+
script: env; rake --verbose all test
|
1745
2385
|
Test clang-3.5 32bit_float_int16_utf8:
|
1746
2386
|
stage: test
|
1747
2387
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1751,7 +2391,7 @@ Test clang-3.5 32bit_float_int16_utf8:
|
|
1751
2391
|
LD: clang-3.5
|
1752
2392
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
1753
2393
|
LDFLAGS: "-m32"
|
1754
|
-
script: env;
|
2394
|
+
script: env; rake --verbose all test
|
1755
2395
|
Test clang-3.5 32bit_float_int64:
|
1756
2396
|
stage: test
|
1757
2397
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1761,7 +2401,7 @@ Test clang-3.5 32bit_float_int64:
|
|
1761
2401
|
LD: clang-3.5
|
1762
2402
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
1763
2403
|
LDFLAGS: "-m32"
|
1764
|
-
script: env;
|
2404
|
+
script: env; rake --verbose all test
|
1765
2405
|
Test clang-3.5 32bit_float_int64_utf8:
|
1766
2406
|
stage: test
|
1767
2407
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1771,7 +2411,7 @@ Test clang-3.5 32bit_float_int64_utf8:
|
|
1771
2411
|
LD: clang-3.5
|
1772
2412
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
1773
2413
|
LDFLAGS: "-m32"
|
1774
|
-
script: env;
|
2414
|
+
script: env; rake --verbose all test
|
1775
2415
|
Test clang-3.5 64bit:
|
1776
2416
|
stage: test
|
1777
2417
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1779,9 +2419,9 @@ Test clang-3.5 64bit:
|
|
1779
2419
|
CC: clang-3.5
|
1780
2420
|
CXX: clang++-3.5
|
1781
2421
|
LD: clang-3.5
|
1782
|
-
CFLAGS:
|
2422
|
+
CFLAGS: ''
|
1783
2423
|
LDFLAGS: ''
|
1784
|
-
script: env;
|
2424
|
+
script: env; rake --verbose all test
|
1785
2425
|
Test clang-3.5 64bit_utf8:
|
1786
2426
|
stage: test
|
1787
2427
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1789,9 +2429,9 @@ Test clang-3.5 64bit_utf8:
|
|
1789
2429
|
CC: clang-3.5
|
1790
2430
|
CXX: clang++-3.5
|
1791
2431
|
LD: clang-3.5
|
1792
|
-
CFLAGS: "-
|
2432
|
+
CFLAGS: "-DMRB_UTF8_STRING=1"
|
1793
2433
|
LDFLAGS: ''
|
1794
|
-
script: env;
|
2434
|
+
script: env; rake --verbose all test
|
1795
2435
|
Test clang-3.5 64bit_nan:
|
1796
2436
|
stage: test
|
1797
2437
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1801,7 +2441,7 @@ Test clang-3.5 64bit_nan:
|
|
1801
2441
|
LD: clang-3.5
|
1802
2442
|
CFLAGS: "-DMRB_NAN_BOXING=1"
|
1803
2443
|
LDFLAGS: ''
|
1804
|
-
script: env;
|
2444
|
+
script: env; rake --verbose all test
|
1805
2445
|
Test clang-3.5 64bit_nan_utf8:
|
1806
2446
|
stage: test
|
1807
2447
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1811,7 +2451,27 @@ Test clang-3.5 64bit_nan_utf8:
|
|
1811
2451
|
LD: clang-3.5
|
1812
2452
|
CFLAGS: "-DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
1813
2453
|
LDFLAGS: ''
|
1814
|
-
script: env;
|
2454
|
+
script: env; rake --verbose all test
|
2455
|
+
Test clang-3.5 64bit_word:
|
2456
|
+
stage: test
|
2457
|
+
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
2458
|
+
variables:
|
2459
|
+
CC: clang-3.5
|
2460
|
+
CXX: clang++-3.5
|
2461
|
+
LD: clang-3.5
|
2462
|
+
CFLAGS: "-DMRB_WORD_BOXING=1"
|
2463
|
+
LDFLAGS: ''
|
2464
|
+
script: env; rake --verbose all test
|
2465
|
+
Test clang-3.5 64bit_word_utf8:
|
2466
|
+
stage: test
|
2467
|
+
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
2468
|
+
variables:
|
2469
|
+
CC: clang-3.5
|
2470
|
+
CXX: clang++-3.5
|
2471
|
+
LD: clang-3.5
|
2472
|
+
CFLAGS: "-DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2473
|
+
LDFLAGS: ''
|
2474
|
+
script: env; rake --verbose all test
|
1815
2475
|
Test clang-3.5 64bit_int16:
|
1816
2476
|
stage: test
|
1817
2477
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1821,7 +2481,7 @@ Test clang-3.5 64bit_int16:
|
|
1821
2481
|
LD: clang-3.5
|
1822
2482
|
CFLAGS: "-DMRB_INT16=1"
|
1823
2483
|
LDFLAGS: ''
|
1824
|
-
script: env;
|
2484
|
+
script: env; rake --verbose all test
|
1825
2485
|
Test clang-3.5 64bit_int16_utf8:
|
1826
2486
|
stage: test
|
1827
2487
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1831,7 +2491,7 @@ Test clang-3.5 64bit_int16_utf8:
|
|
1831
2491
|
LD: clang-3.5
|
1832
2492
|
CFLAGS: "-DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
1833
2493
|
LDFLAGS: ''
|
1834
|
-
script: env;
|
2494
|
+
script: env; rake --verbose all test
|
1835
2495
|
Test clang-3.5 64bit_int16_nan:
|
1836
2496
|
stage: test
|
1837
2497
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1841,7 +2501,7 @@ Test clang-3.5 64bit_int16_nan:
|
|
1841
2501
|
LD: clang-3.5
|
1842
2502
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
1843
2503
|
LDFLAGS: ''
|
1844
|
-
script: env;
|
2504
|
+
script: env; rake --verbose all test
|
1845
2505
|
Test clang-3.5 64bit_int16_nan_utf8:
|
1846
2506
|
stage: test
|
1847
2507
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1851,7 +2511,7 @@ Test clang-3.5 64bit_int16_nan_utf8:
|
|
1851
2511
|
LD: clang-3.5
|
1852
2512
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
1853
2513
|
LDFLAGS: ''
|
1854
|
-
script: env;
|
2514
|
+
script: env; rake --verbose all test
|
1855
2515
|
Test clang-3.5 64bit_int64:
|
1856
2516
|
stage: test
|
1857
2517
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1859,10 +2519,30 @@ Test clang-3.5 64bit_int64:
|
|
1859
2519
|
CC: clang-3.5
|
1860
2520
|
CXX: clang++-3.5
|
1861
2521
|
LD: clang-3.5
|
1862
|
-
CFLAGS: "-DMRB_INT64=1
|
2522
|
+
CFLAGS: "-DMRB_INT64=1"
|
1863
2523
|
LDFLAGS: ''
|
1864
|
-
script: env;
|
2524
|
+
script: env; rake --verbose all test
|
1865
2525
|
Test clang-3.5 64bit_int64_utf8:
|
2526
|
+
stage: test
|
2527
|
+
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
2528
|
+
variables:
|
2529
|
+
CC: clang-3.5
|
2530
|
+
CXX: clang++-3.5
|
2531
|
+
LD: clang-3.5
|
2532
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
2533
|
+
LDFLAGS: ''
|
2534
|
+
script: env; rake --verbose all test
|
2535
|
+
Test clang-3.5 64bit_int64_word:
|
2536
|
+
stage: test
|
2537
|
+
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
2538
|
+
variables:
|
2539
|
+
CC: clang-3.5
|
2540
|
+
CXX: clang++-3.5
|
2541
|
+
LD: clang-3.5
|
2542
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
2543
|
+
LDFLAGS: ''
|
2544
|
+
script: env; rake --verbose all test
|
2545
|
+
Test clang-3.5 64bit_int64_word_utf8:
|
1866
2546
|
stage: test
|
1867
2547
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
1868
2548
|
variables:
|
@@ -1871,7 +2551,7 @@ Test clang-3.5 64bit_int64_utf8:
|
|
1871
2551
|
LD: clang-3.5
|
1872
2552
|
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1873
2553
|
LDFLAGS: ''
|
1874
|
-
script: env;
|
2554
|
+
script: env; rake --verbose all test
|
1875
2555
|
Test clang-3.5 64bit_float:
|
1876
2556
|
stage: test
|
1877
2557
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1879,10 +2559,30 @@ Test clang-3.5 64bit_float:
|
|
1879
2559
|
CC: clang-3.5
|
1880
2560
|
CXX: clang++-3.5
|
1881
2561
|
LD: clang-3.5
|
1882
|
-
CFLAGS: "-DMRB_USE_FLOAT=1
|
2562
|
+
CFLAGS: "-DMRB_USE_FLOAT=1"
|
1883
2563
|
LDFLAGS: ''
|
1884
|
-
script: env;
|
2564
|
+
script: env; rake --verbose all test
|
1885
2565
|
Test clang-3.5 64bit_float_utf8:
|
2566
|
+
stage: test
|
2567
|
+
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
2568
|
+
variables:
|
2569
|
+
CC: clang-3.5
|
2570
|
+
CXX: clang++-3.5
|
2571
|
+
LD: clang-3.5
|
2572
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
2573
|
+
LDFLAGS: ''
|
2574
|
+
script: env; rake --verbose all test
|
2575
|
+
Test clang-3.5 64bit_float_word:
|
2576
|
+
stage: test
|
2577
|
+
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
2578
|
+
variables:
|
2579
|
+
CC: clang-3.5
|
2580
|
+
CXX: clang++-3.5
|
2581
|
+
LD: clang-3.5
|
2582
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
2583
|
+
LDFLAGS: ''
|
2584
|
+
script: env; rake --verbose all test
|
2585
|
+
Test clang-3.5 64bit_float_word_utf8:
|
1886
2586
|
stage: test
|
1887
2587
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
1888
2588
|
variables:
|
@@ -1891,7 +2591,7 @@ Test clang-3.5 64bit_float_utf8:
|
|
1891
2591
|
LD: clang-3.5
|
1892
2592
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1893
2593
|
LDFLAGS: ''
|
1894
|
-
script: env;
|
2594
|
+
script: env; rake --verbose all test
|
1895
2595
|
Test clang-3.5 64bit_float_int16:
|
1896
2596
|
stage: test
|
1897
2597
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1901,7 +2601,7 @@ Test clang-3.5 64bit_float_int16:
|
|
1901
2601
|
LD: clang-3.5
|
1902
2602
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
1903
2603
|
LDFLAGS: ''
|
1904
|
-
script: env;
|
2604
|
+
script: env; rake --verbose all test
|
1905
2605
|
Test clang-3.5 64bit_float_int16_utf8:
|
1906
2606
|
stage: test
|
1907
2607
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1911,7 +2611,7 @@ Test clang-3.5 64bit_float_int16_utf8:
|
|
1911
2611
|
LD: clang-3.5
|
1912
2612
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
1913
2613
|
LDFLAGS: ''
|
1914
|
-
script: env;
|
2614
|
+
script: env; rake --verbose all test
|
1915
2615
|
Test clang-3.5 64bit_float_int64:
|
1916
2616
|
stage: test
|
1917
2617
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
@@ -1919,10 +2619,30 @@ Test clang-3.5 64bit_float_int64:
|
|
1919
2619
|
CC: clang-3.5
|
1920
2620
|
CXX: clang++-3.5
|
1921
2621
|
LD: clang-3.5
|
1922
|
-
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1
|
2622
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
1923
2623
|
LDFLAGS: ''
|
1924
|
-
script: env;
|
2624
|
+
script: env; rake --verbose all test
|
1925
2625
|
Test clang-3.5 64bit_float_int64_utf8:
|
2626
|
+
stage: test
|
2627
|
+
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
2628
|
+
variables:
|
2629
|
+
CC: clang-3.5
|
2630
|
+
CXX: clang++-3.5
|
2631
|
+
LD: clang-3.5
|
2632
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
2633
|
+
LDFLAGS: ''
|
2634
|
+
script: env; rake --verbose all test
|
2635
|
+
Test clang-3.5 64bit_float_int64_word:
|
2636
|
+
stage: test
|
2637
|
+
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
2638
|
+
variables:
|
2639
|
+
CC: clang-3.5
|
2640
|
+
CXX: clang++-3.5
|
2641
|
+
LD: clang-3.5
|
2642
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
2643
|
+
LDFLAGS: ''
|
2644
|
+
script: env; rake --verbose all test
|
2645
|
+
Test clang-3.5 64bit_float_int64_word_utf8:
|
1926
2646
|
stage: test
|
1927
2647
|
image: registry.gitlab.com/dabroz/mruby:clang35_0.7
|
1928
2648
|
variables:
|
@@ -1931,7 +2651,7 @@ Test clang-3.5 64bit_float_int64_utf8:
|
|
1931
2651
|
LD: clang-3.5
|
1932
2652
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
1933
2653
|
LDFLAGS: ''
|
1934
|
-
script: env;
|
2654
|
+
script: env; rake --verbose all test
|
1935
2655
|
Test clang-3.6 32bit:
|
1936
2656
|
stage: test
|
1937
2657
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -1939,9 +2659,9 @@ Test clang-3.6 32bit:
|
|
1939
2659
|
CC: clang-3.6
|
1940
2660
|
CXX: clang++-3.6
|
1941
2661
|
LD: clang-3.6
|
1942
|
-
CFLAGS: "-m32
|
2662
|
+
CFLAGS: "-m32 "
|
1943
2663
|
LDFLAGS: "-m32"
|
1944
|
-
script: env;
|
2664
|
+
script: env; rake --verbose all test
|
1945
2665
|
Test clang-3.6 32bit_utf8:
|
1946
2666
|
stage: test
|
1947
2667
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -1949,9 +2669,9 @@ Test clang-3.6 32bit_utf8:
|
|
1949
2669
|
CC: clang-3.6
|
1950
2670
|
CXX: clang++-3.6
|
1951
2671
|
LD: clang-3.6
|
1952
|
-
CFLAGS: "-m32 -
|
2672
|
+
CFLAGS: "-m32 -DMRB_UTF8_STRING=1"
|
1953
2673
|
LDFLAGS: "-m32"
|
1954
|
-
script: env;
|
2674
|
+
script: env; rake --verbose all test
|
1955
2675
|
Test clang-3.6 32bit_nan:
|
1956
2676
|
stage: test
|
1957
2677
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -1961,7 +2681,7 @@ Test clang-3.6 32bit_nan:
|
|
1961
2681
|
LD: clang-3.6
|
1962
2682
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1"
|
1963
2683
|
LDFLAGS: "-m32"
|
1964
|
-
script: env;
|
2684
|
+
script: env; rake --verbose all test
|
1965
2685
|
Test clang-3.6 32bit_nan_utf8:
|
1966
2686
|
stage: test
|
1967
2687
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -1971,7 +2691,27 @@ Test clang-3.6 32bit_nan_utf8:
|
|
1971
2691
|
LD: clang-3.6
|
1972
2692
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
1973
2693
|
LDFLAGS: "-m32"
|
1974
|
-
script: env;
|
2694
|
+
script: env; rake --verbose all test
|
2695
|
+
Test clang-3.6 32bit_word:
|
2696
|
+
stage: test
|
2697
|
+
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
2698
|
+
variables:
|
2699
|
+
CC: clang-3.6
|
2700
|
+
CXX: clang++-3.6
|
2701
|
+
LD: clang-3.6
|
2702
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1"
|
2703
|
+
LDFLAGS: "-m32"
|
2704
|
+
script: env; rake --verbose all test
|
2705
|
+
Test clang-3.6 32bit_word_utf8:
|
2706
|
+
stage: test
|
2707
|
+
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
2708
|
+
variables:
|
2709
|
+
CC: clang-3.6
|
2710
|
+
CXX: clang++-3.6
|
2711
|
+
LD: clang-3.6
|
2712
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2713
|
+
LDFLAGS: "-m32"
|
2714
|
+
script: env; rake --verbose all test
|
1975
2715
|
Test clang-3.6 32bit_int16:
|
1976
2716
|
stage: test
|
1977
2717
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -1981,7 +2721,7 @@ Test clang-3.6 32bit_int16:
|
|
1981
2721
|
LD: clang-3.6
|
1982
2722
|
CFLAGS: "-m32 -DMRB_INT16=1"
|
1983
2723
|
LDFLAGS: "-m32"
|
1984
|
-
script: env;
|
2724
|
+
script: env; rake --verbose all test
|
1985
2725
|
Test clang-3.6 32bit_int16_utf8:
|
1986
2726
|
stage: test
|
1987
2727
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -1991,7 +2731,7 @@ Test clang-3.6 32bit_int16_utf8:
|
|
1991
2731
|
LD: clang-3.6
|
1992
2732
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
1993
2733
|
LDFLAGS: "-m32"
|
1994
|
-
script: env;
|
2734
|
+
script: env; rake --verbose all test
|
1995
2735
|
Test clang-3.6 32bit_int16_nan:
|
1996
2736
|
stage: test
|
1997
2737
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2001,7 +2741,7 @@ Test clang-3.6 32bit_int16_nan:
|
|
2001
2741
|
LD: clang-3.6
|
2002
2742
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
2003
2743
|
LDFLAGS: "-m32"
|
2004
|
-
script: env;
|
2744
|
+
script: env; rake --verbose all test
|
2005
2745
|
Test clang-3.6 32bit_int16_nan_utf8:
|
2006
2746
|
stage: test
|
2007
2747
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2011,7 +2751,7 @@ Test clang-3.6 32bit_int16_nan_utf8:
|
|
2011
2751
|
LD: clang-3.6
|
2012
2752
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
2013
2753
|
LDFLAGS: "-m32"
|
2014
|
-
script: env;
|
2754
|
+
script: env; rake --verbose all test
|
2015
2755
|
Test clang-3.6 32bit_int64:
|
2016
2756
|
stage: test
|
2017
2757
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2021,7 +2761,7 @@ Test clang-3.6 32bit_int64:
|
|
2021
2761
|
LD: clang-3.6
|
2022
2762
|
CFLAGS: "-m32 -DMRB_INT64=1"
|
2023
2763
|
LDFLAGS: "-m32"
|
2024
|
-
script: env;
|
2764
|
+
script: env; rake --verbose all test
|
2025
2765
|
Test clang-3.6 32bit_int64_utf8:
|
2026
2766
|
stage: test
|
2027
2767
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2031,7 +2771,7 @@ Test clang-3.6 32bit_int64_utf8:
|
|
2031
2771
|
LD: clang-3.6
|
2032
2772
|
CFLAGS: "-m32 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
2033
2773
|
LDFLAGS: "-m32"
|
2034
|
-
script: env;
|
2774
|
+
script: env; rake --verbose all test
|
2035
2775
|
Test clang-3.6 32bit_float:
|
2036
2776
|
stage: test
|
2037
2777
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2039,10 +2779,30 @@ Test clang-3.6 32bit_float:
|
|
2039
2779
|
CC: clang-3.6
|
2040
2780
|
CXX: clang++-3.6
|
2041
2781
|
LD: clang-3.6
|
2042
|
-
CFLAGS: "-m32 -DMRB_USE_FLOAT=1
|
2782
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1"
|
2043
2783
|
LDFLAGS: "-m32"
|
2044
|
-
script: env;
|
2784
|
+
script: env; rake --verbose all test
|
2045
2785
|
Test clang-3.6 32bit_float_utf8:
|
2786
|
+
stage: test
|
2787
|
+
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
2788
|
+
variables:
|
2789
|
+
CC: clang-3.6
|
2790
|
+
CXX: clang++-3.6
|
2791
|
+
LD: clang-3.6
|
2792
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
2793
|
+
LDFLAGS: "-m32"
|
2794
|
+
script: env; rake --verbose all test
|
2795
|
+
Test clang-3.6 32bit_float_word:
|
2796
|
+
stage: test
|
2797
|
+
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
2798
|
+
variables:
|
2799
|
+
CC: clang-3.6
|
2800
|
+
CXX: clang++-3.6
|
2801
|
+
LD: clang-3.6
|
2802
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
2803
|
+
LDFLAGS: "-m32"
|
2804
|
+
script: env; rake --verbose all test
|
2805
|
+
Test clang-3.6 32bit_float_word_utf8:
|
2046
2806
|
stage: test
|
2047
2807
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
2048
2808
|
variables:
|
@@ -2051,7 +2811,7 @@ Test clang-3.6 32bit_float_utf8:
|
|
2051
2811
|
LD: clang-3.6
|
2052
2812
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2053
2813
|
LDFLAGS: "-m32"
|
2054
|
-
script: env;
|
2814
|
+
script: env; rake --verbose all test
|
2055
2815
|
Test clang-3.6 32bit_float_int16:
|
2056
2816
|
stage: test
|
2057
2817
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2061,7 +2821,7 @@ Test clang-3.6 32bit_float_int16:
|
|
2061
2821
|
LD: clang-3.6
|
2062
2822
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
2063
2823
|
LDFLAGS: "-m32"
|
2064
|
-
script: env;
|
2824
|
+
script: env; rake --verbose all test
|
2065
2825
|
Test clang-3.6 32bit_float_int16_utf8:
|
2066
2826
|
stage: test
|
2067
2827
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2071,7 +2831,7 @@ Test clang-3.6 32bit_float_int16_utf8:
|
|
2071
2831
|
LD: clang-3.6
|
2072
2832
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
2073
2833
|
LDFLAGS: "-m32"
|
2074
|
-
script: env;
|
2834
|
+
script: env; rake --verbose all test
|
2075
2835
|
Test clang-3.6 32bit_float_int64:
|
2076
2836
|
stage: test
|
2077
2837
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2081,7 +2841,7 @@ Test clang-3.6 32bit_float_int64:
|
|
2081
2841
|
LD: clang-3.6
|
2082
2842
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
2083
2843
|
LDFLAGS: "-m32"
|
2084
|
-
script: env;
|
2844
|
+
script: env; rake --verbose all test
|
2085
2845
|
Test clang-3.6 32bit_float_int64_utf8:
|
2086
2846
|
stage: test
|
2087
2847
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2091,7 +2851,7 @@ Test clang-3.6 32bit_float_int64_utf8:
|
|
2091
2851
|
LD: clang-3.6
|
2092
2852
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
2093
2853
|
LDFLAGS: "-m32"
|
2094
|
-
script: env;
|
2854
|
+
script: env; rake --verbose all test
|
2095
2855
|
Test clang-3.6 64bit:
|
2096
2856
|
stage: test
|
2097
2857
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2099,9 +2859,9 @@ Test clang-3.6 64bit:
|
|
2099
2859
|
CC: clang-3.6
|
2100
2860
|
CXX: clang++-3.6
|
2101
2861
|
LD: clang-3.6
|
2102
|
-
CFLAGS:
|
2862
|
+
CFLAGS: ''
|
2103
2863
|
LDFLAGS: ''
|
2104
|
-
script: env;
|
2864
|
+
script: env; rake --verbose all test
|
2105
2865
|
Test clang-3.6 64bit_utf8:
|
2106
2866
|
stage: test
|
2107
2867
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2109,9 +2869,9 @@ Test clang-3.6 64bit_utf8:
|
|
2109
2869
|
CC: clang-3.6
|
2110
2870
|
CXX: clang++-3.6
|
2111
2871
|
LD: clang-3.6
|
2112
|
-
CFLAGS: "-
|
2872
|
+
CFLAGS: "-DMRB_UTF8_STRING=1"
|
2113
2873
|
LDFLAGS: ''
|
2114
|
-
script: env;
|
2874
|
+
script: env; rake --verbose all test
|
2115
2875
|
Test clang-3.6 64bit_nan:
|
2116
2876
|
stage: test
|
2117
2877
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2121,7 +2881,7 @@ Test clang-3.6 64bit_nan:
|
|
2121
2881
|
LD: clang-3.6
|
2122
2882
|
CFLAGS: "-DMRB_NAN_BOXING=1"
|
2123
2883
|
LDFLAGS: ''
|
2124
|
-
script: env;
|
2884
|
+
script: env; rake --verbose all test
|
2125
2885
|
Test clang-3.6 64bit_nan_utf8:
|
2126
2886
|
stage: test
|
2127
2887
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2131,7 +2891,27 @@ Test clang-3.6 64bit_nan_utf8:
|
|
2131
2891
|
LD: clang-3.6
|
2132
2892
|
CFLAGS: "-DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
2133
2893
|
LDFLAGS: ''
|
2134
|
-
script: env;
|
2894
|
+
script: env; rake --verbose all test
|
2895
|
+
Test clang-3.6 64bit_word:
|
2896
|
+
stage: test
|
2897
|
+
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
2898
|
+
variables:
|
2899
|
+
CC: clang-3.6
|
2900
|
+
CXX: clang++-3.6
|
2901
|
+
LD: clang-3.6
|
2902
|
+
CFLAGS: "-DMRB_WORD_BOXING=1"
|
2903
|
+
LDFLAGS: ''
|
2904
|
+
script: env; rake --verbose all test
|
2905
|
+
Test clang-3.6 64bit_word_utf8:
|
2906
|
+
stage: test
|
2907
|
+
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
2908
|
+
variables:
|
2909
|
+
CC: clang-3.6
|
2910
|
+
CXX: clang++-3.6
|
2911
|
+
LD: clang-3.6
|
2912
|
+
CFLAGS: "-DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2913
|
+
LDFLAGS: ''
|
2914
|
+
script: env; rake --verbose all test
|
2135
2915
|
Test clang-3.6 64bit_int16:
|
2136
2916
|
stage: test
|
2137
2917
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2141,7 +2921,7 @@ Test clang-3.6 64bit_int16:
|
|
2141
2921
|
LD: clang-3.6
|
2142
2922
|
CFLAGS: "-DMRB_INT16=1"
|
2143
2923
|
LDFLAGS: ''
|
2144
|
-
script: env;
|
2924
|
+
script: env; rake --verbose all test
|
2145
2925
|
Test clang-3.6 64bit_int16_utf8:
|
2146
2926
|
stage: test
|
2147
2927
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2151,7 +2931,7 @@ Test clang-3.6 64bit_int16_utf8:
|
|
2151
2931
|
LD: clang-3.6
|
2152
2932
|
CFLAGS: "-DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
2153
2933
|
LDFLAGS: ''
|
2154
|
-
script: env;
|
2934
|
+
script: env; rake --verbose all test
|
2155
2935
|
Test clang-3.6 64bit_int16_nan:
|
2156
2936
|
stage: test
|
2157
2937
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2161,7 +2941,7 @@ Test clang-3.6 64bit_int16_nan:
|
|
2161
2941
|
LD: clang-3.6
|
2162
2942
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
2163
2943
|
LDFLAGS: ''
|
2164
|
-
script: env;
|
2944
|
+
script: env; rake --verbose all test
|
2165
2945
|
Test clang-3.6 64bit_int16_nan_utf8:
|
2166
2946
|
stage: test
|
2167
2947
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2171,7 +2951,7 @@ Test clang-3.6 64bit_int16_nan_utf8:
|
|
2171
2951
|
LD: clang-3.6
|
2172
2952
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
2173
2953
|
LDFLAGS: ''
|
2174
|
-
script: env;
|
2954
|
+
script: env; rake --verbose all test
|
2175
2955
|
Test clang-3.6 64bit_int64:
|
2176
2956
|
stage: test
|
2177
2957
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2179,10 +2959,30 @@ Test clang-3.6 64bit_int64:
|
|
2179
2959
|
CC: clang-3.6
|
2180
2960
|
CXX: clang++-3.6
|
2181
2961
|
LD: clang-3.6
|
2182
|
-
CFLAGS: "-DMRB_INT64=1
|
2962
|
+
CFLAGS: "-DMRB_INT64=1"
|
2183
2963
|
LDFLAGS: ''
|
2184
|
-
script: env;
|
2964
|
+
script: env; rake --verbose all test
|
2185
2965
|
Test clang-3.6 64bit_int64_utf8:
|
2966
|
+
stage: test
|
2967
|
+
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
2968
|
+
variables:
|
2969
|
+
CC: clang-3.6
|
2970
|
+
CXX: clang++-3.6
|
2971
|
+
LD: clang-3.6
|
2972
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
2973
|
+
LDFLAGS: ''
|
2974
|
+
script: env; rake --verbose all test
|
2975
|
+
Test clang-3.6 64bit_int64_word:
|
2976
|
+
stage: test
|
2977
|
+
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
2978
|
+
variables:
|
2979
|
+
CC: clang-3.6
|
2980
|
+
CXX: clang++-3.6
|
2981
|
+
LD: clang-3.6
|
2982
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
2983
|
+
LDFLAGS: ''
|
2984
|
+
script: env; rake --verbose all test
|
2985
|
+
Test clang-3.6 64bit_int64_word_utf8:
|
2186
2986
|
stage: test
|
2187
2987
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
2188
2988
|
variables:
|
@@ -2191,7 +2991,7 @@ Test clang-3.6 64bit_int64_utf8:
|
|
2191
2991
|
LD: clang-3.6
|
2192
2992
|
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2193
2993
|
LDFLAGS: ''
|
2194
|
-
script: env;
|
2994
|
+
script: env; rake --verbose all test
|
2195
2995
|
Test clang-3.6 64bit_float:
|
2196
2996
|
stage: test
|
2197
2997
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2199,10 +2999,30 @@ Test clang-3.6 64bit_float:
|
|
2199
2999
|
CC: clang-3.6
|
2200
3000
|
CXX: clang++-3.6
|
2201
3001
|
LD: clang-3.6
|
2202
|
-
CFLAGS: "-DMRB_USE_FLOAT=1
|
3002
|
+
CFLAGS: "-DMRB_USE_FLOAT=1"
|
2203
3003
|
LDFLAGS: ''
|
2204
|
-
script: env;
|
3004
|
+
script: env; rake --verbose all test
|
2205
3005
|
Test clang-3.6 64bit_float_utf8:
|
3006
|
+
stage: test
|
3007
|
+
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
3008
|
+
variables:
|
3009
|
+
CC: clang-3.6
|
3010
|
+
CXX: clang++-3.6
|
3011
|
+
LD: clang-3.6
|
3012
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
3013
|
+
LDFLAGS: ''
|
3014
|
+
script: env; rake --verbose all test
|
3015
|
+
Test clang-3.6 64bit_float_word:
|
3016
|
+
stage: test
|
3017
|
+
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
3018
|
+
variables:
|
3019
|
+
CC: clang-3.6
|
3020
|
+
CXX: clang++-3.6
|
3021
|
+
LD: clang-3.6
|
3022
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
3023
|
+
LDFLAGS: ''
|
3024
|
+
script: env; rake --verbose all test
|
3025
|
+
Test clang-3.6 64bit_float_word_utf8:
|
2206
3026
|
stage: test
|
2207
3027
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
2208
3028
|
variables:
|
@@ -2211,7 +3031,7 @@ Test clang-3.6 64bit_float_utf8:
|
|
2211
3031
|
LD: clang-3.6
|
2212
3032
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2213
3033
|
LDFLAGS: ''
|
2214
|
-
script: env;
|
3034
|
+
script: env; rake --verbose all test
|
2215
3035
|
Test clang-3.6 64bit_float_int16:
|
2216
3036
|
stage: test
|
2217
3037
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2221,7 +3041,7 @@ Test clang-3.6 64bit_float_int16:
|
|
2221
3041
|
LD: clang-3.6
|
2222
3042
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
2223
3043
|
LDFLAGS: ''
|
2224
|
-
script: env;
|
3044
|
+
script: env; rake --verbose all test
|
2225
3045
|
Test clang-3.6 64bit_float_int16_utf8:
|
2226
3046
|
stage: test
|
2227
3047
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2231,7 +3051,7 @@ Test clang-3.6 64bit_float_int16_utf8:
|
|
2231
3051
|
LD: clang-3.6
|
2232
3052
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
2233
3053
|
LDFLAGS: ''
|
2234
|
-
script: env;
|
3054
|
+
script: env; rake --verbose all test
|
2235
3055
|
Test clang-3.6 64bit_float_int64:
|
2236
3056
|
stage: test
|
2237
3057
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
@@ -2239,10 +3059,30 @@ Test clang-3.6 64bit_float_int64:
|
|
2239
3059
|
CC: clang-3.6
|
2240
3060
|
CXX: clang++-3.6
|
2241
3061
|
LD: clang-3.6
|
2242
|
-
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1
|
3062
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
2243
3063
|
LDFLAGS: ''
|
2244
|
-
script: env;
|
3064
|
+
script: env; rake --verbose all test
|
2245
3065
|
Test clang-3.6 64bit_float_int64_utf8:
|
3066
|
+
stage: test
|
3067
|
+
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
3068
|
+
variables:
|
3069
|
+
CC: clang-3.6
|
3070
|
+
CXX: clang++-3.6
|
3071
|
+
LD: clang-3.6
|
3072
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
3073
|
+
LDFLAGS: ''
|
3074
|
+
script: env; rake --verbose all test
|
3075
|
+
Test clang-3.6 64bit_float_int64_word:
|
3076
|
+
stage: test
|
3077
|
+
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
3078
|
+
variables:
|
3079
|
+
CC: clang-3.6
|
3080
|
+
CXX: clang++-3.6
|
3081
|
+
LD: clang-3.6
|
3082
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
3083
|
+
LDFLAGS: ''
|
3084
|
+
script: env; rake --verbose all test
|
3085
|
+
Test clang-3.6 64bit_float_int64_word_utf8:
|
2246
3086
|
stage: test
|
2247
3087
|
image: registry.gitlab.com/dabroz/mruby:clang36_0.7
|
2248
3088
|
variables:
|
@@ -2251,7 +3091,7 @@ Test clang-3.6 64bit_float_int64_utf8:
|
|
2251
3091
|
LD: clang-3.6
|
2252
3092
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2253
3093
|
LDFLAGS: ''
|
2254
|
-
script: env;
|
3094
|
+
script: env; rake --verbose all test
|
2255
3095
|
Test clang-3.7 32bit:
|
2256
3096
|
stage: test
|
2257
3097
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2259,9 +3099,9 @@ Test clang-3.7 32bit:
|
|
2259
3099
|
CC: clang-3.7
|
2260
3100
|
CXX: clang++-3.7
|
2261
3101
|
LD: clang-3.7
|
2262
|
-
CFLAGS: "-m32
|
3102
|
+
CFLAGS: "-m32 "
|
2263
3103
|
LDFLAGS: "-m32"
|
2264
|
-
script: env;
|
3104
|
+
script: env; rake --verbose all test
|
2265
3105
|
Test clang-3.7 32bit_utf8:
|
2266
3106
|
stage: test
|
2267
3107
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2269,9 +3109,9 @@ Test clang-3.7 32bit_utf8:
|
|
2269
3109
|
CC: clang-3.7
|
2270
3110
|
CXX: clang++-3.7
|
2271
3111
|
LD: clang-3.7
|
2272
|
-
CFLAGS: "-m32 -
|
3112
|
+
CFLAGS: "-m32 -DMRB_UTF8_STRING=1"
|
2273
3113
|
LDFLAGS: "-m32"
|
2274
|
-
script: env;
|
3114
|
+
script: env; rake --verbose all test
|
2275
3115
|
Test clang-3.7 32bit_nan:
|
2276
3116
|
stage: test
|
2277
3117
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2281,7 +3121,7 @@ Test clang-3.7 32bit_nan:
|
|
2281
3121
|
LD: clang-3.7
|
2282
3122
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1"
|
2283
3123
|
LDFLAGS: "-m32"
|
2284
|
-
script: env;
|
3124
|
+
script: env; rake --verbose all test
|
2285
3125
|
Test clang-3.7 32bit_nan_utf8:
|
2286
3126
|
stage: test
|
2287
3127
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2291,7 +3131,27 @@ Test clang-3.7 32bit_nan_utf8:
|
|
2291
3131
|
LD: clang-3.7
|
2292
3132
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
2293
3133
|
LDFLAGS: "-m32"
|
2294
|
-
script: env;
|
3134
|
+
script: env; rake --verbose all test
|
3135
|
+
Test clang-3.7 32bit_word:
|
3136
|
+
stage: test
|
3137
|
+
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
3138
|
+
variables:
|
3139
|
+
CC: clang-3.7
|
3140
|
+
CXX: clang++-3.7
|
3141
|
+
LD: clang-3.7
|
3142
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1"
|
3143
|
+
LDFLAGS: "-m32"
|
3144
|
+
script: env; rake --verbose all test
|
3145
|
+
Test clang-3.7 32bit_word_utf8:
|
3146
|
+
stage: test
|
3147
|
+
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
3148
|
+
variables:
|
3149
|
+
CC: clang-3.7
|
3150
|
+
CXX: clang++-3.7
|
3151
|
+
LD: clang-3.7
|
3152
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
3153
|
+
LDFLAGS: "-m32"
|
3154
|
+
script: env; rake --verbose all test
|
2295
3155
|
Test clang-3.7 32bit_int16:
|
2296
3156
|
stage: test
|
2297
3157
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2301,7 +3161,7 @@ Test clang-3.7 32bit_int16:
|
|
2301
3161
|
LD: clang-3.7
|
2302
3162
|
CFLAGS: "-m32 -DMRB_INT16=1"
|
2303
3163
|
LDFLAGS: "-m32"
|
2304
|
-
script: env;
|
3164
|
+
script: env; rake --verbose all test
|
2305
3165
|
Test clang-3.7 32bit_int16_utf8:
|
2306
3166
|
stage: test
|
2307
3167
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2311,7 +3171,7 @@ Test clang-3.7 32bit_int16_utf8:
|
|
2311
3171
|
LD: clang-3.7
|
2312
3172
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
2313
3173
|
LDFLAGS: "-m32"
|
2314
|
-
script: env;
|
3174
|
+
script: env; rake --verbose all test
|
2315
3175
|
Test clang-3.7 32bit_int16_nan:
|
2316
3176
|
stage: test
|
2317
3177
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2321,7 +3181,7 @@ Test clang-3.7 32bit_int16_nan:
|
|
2321
3181
|
LD: clang-3.7
|
2322
3182
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
2323
3183
|
LDFLAGS: "-m32"
|
2324
|
-
script: env;
|
3184
|
+
script: env; rake --verbose all test
|
2325
3185
|
Test clang-3.7 32bit_int16_nan_utf8:
|
2326
3186
|
stage: test
|
2327
3187
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2331,7 +3191,7 @@ Test clang-3.7 32bit_int16_nan_utf8:
|
|
2331
3191
|
LD: clang-3.7
|
2332
3192
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
2333
3193
|
LDFLAGS: "-m32"
|
2334
|
-
script: env;
|
3194
|
+
script: env; rake --verbose all test
|
2335
3195
|
Test clang-3.7 32bit_int64:
|
2336
3196
|
stage: test
|
2337
3197
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2341,7 +3201,7 @@ Test clang-3.7 32bit_int64:
|
|
2341
3201
|
LD: clang-3.7
|
2342
3202
|
CFLAGS: "-m32 -DMRB_INT64=1"
|
2343
3203
|
LDFLAGS: "-m32"
|
2344
|
-
script: env;
|
3204
|
+
script: env; rake --verbose all test
|
2345
3205
|
Test clang-3.7 32bit_int64_utf8:
|
2346
3206
|
stage: test
|
2347
3207
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2351,7 +3211,7 @@ Test clang-3.7 32bit_int64_utf8:
|
|
2351
3211
|
LD: clang-3.7
|
2352
3212
|
CFLAGS: "-m32 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
2353
3213
|
LDFLAGS: "-m32"
|
2354
|
-
script: env;
|
3214
|
+
script: env; rake --verbose all test
|
2355
3215
|
Test clang-3.7 32bit_float:
|
2356
3216
|
stage: test
|
2357
3217
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2359,10 +3219,30 @@ Test clang-3.7 32bit_float:
|
|
2359
3219
|
CC: clang-3.7
|
2360
3220
|
CXX: clang++-3.7
|
2361
3221
|
LD: clang-3.7
|
2362
|
-
CFLAGS: "-m32 -DMRB_USE_FLOAT=1
|
3222
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1"
|
2363
3223
|
LDFLAGS: "-m32"
|
2364
|
-
script: env;
|
3224
|
+
script: env; rake --verbose all test
|
2365
3225
|
Test clang-3.7 32bit_float_utf8:
|
3226
|
+
stage: test
|
3227
|
+
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
3228
|
+
variables:
|
3229
|
+
CC: clang-3.7
|
3230
|
+
CXX: clang++-3.7
|
3231
|
+
LD: clang-3.7
|
3232
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
3233
|
+
LDFLAGS: "-m32"
|
3234
|
+
script: env; rake --verbose all test
|
3235
|
+
Test clang-3.7 32bit_float_word:
|
3236
|
+
stage: test
|
3237
|
+
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
3238
|
+
variables:
|
3239
|
+
CC: clang-3.7
|
3240
|
+
CXX: clang++-3.7
|
3241
|
+
LD: clang-3.7
|
3242
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
3243
|
+
LDFLAGS: "-m32"
|
3244
|
+
script: env; rake --verbose all test
|
3245
|
+
Test clang-3.7 32bit_float_word_utf8:
|
2366
3246
|
stage: test
|
2367
3247
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2368
3248
|
variables:
|
@@ -2371,7 +3251,7 @@ Test clang-3.7 32bit_float_utf8:
|
|
2371
3251
|
LD: clang-3.7
|
2372
3252
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2373
3253
|
LDFLAGS: "-m32"
|
2374
|
-
script: env;
|
3254
|
+
script: env; rake --verbose all test
|
2375
3255
|
Test clang-3.7 32bit_float_int16:
|
2376
3256
|
stage: test
|
2377
3257
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2381,7 +3261,7 @@ Test clang-3.7 32bit_float_int16:
|
|
2381
3261
|
LD: clang-3.7
|
2382
3262
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
2383
3263
|
LDFLAGS: "-m32"
|
2384
|
-
script: env;
|
3264
|
+
script: env; rake --verbose all test
|
2385
3265
|
Test clang-3.7 32bit_float_int16_utf8:
|
2386
3266
|
stage: test
|
2387
3267
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2391,7 +3271,7 @@ Test clang-3.7 32bit_float_int16_utf8:
|
|
2391
3271
|
LD: clang-3.7
|
2392
3272
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
2393
3273
|
LDFLAGS: "-m32"
|
2394
|
-
script: env;
|
3274
|
+
script: env; rake --verbose all test
|
2395
3275
|
Test clang-3.7 32bit_float_int64:
|
2396
3276
|
stage: test
|
2397
3277
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2401,7 +3281,7 @@ Test clang-3.7 32bit_float_int64:
|
|
2401
3281
|
LD: clang-3.7
|
2402
3282
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
2403
3283
|
LDFLAGS: "-m32"
|
2404
|
-
script: env;
|
3284
|
+
script: env; rake --verbose all test
|
2405
3285
|
Test clang-3.7 32bit_float_int64_utf8:
|
2406
3286
|
stage: test
|
2407
3287
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2409,110 +3289,170 @@ Test clang-3.7 32bit_float_int64_utf8:
|
|
2409
3289
|
CC: clang-3.7
|
2410
3290
|
CXX: clang++-3.7
|
2411
3291
|
LD: clang-3.7
|
2412
|
-
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
2413
|
-
LDFLAGS: "-m32"
|
2414
|
-
script: env;
|
2415
|
-
Test clang-3.7 64bit:
|
3292
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
3293
|
+
LDFLAGS: "-m32"
|
3294
|
+
script: env; rake --verbose all test
|
3295
|
+
Test clang-3.7 64bit:
|
3296
|
+
stage: test
|
3297
|
+
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
3298
|
+
variables:
|
3299
|
+
CC: clang-3.7
|
3300
|
+
CXX: clang++-3.7
|
3301
|
+
LD: clang-3.7
|
3302
|
+
CFLAGS: ''
|
3303
|
+
LDFLAGS: ''
|
3304
|
+
script: env; rake --verbose all test
|
3305
|
+
Test clang-3.7 64bit_utf8:
|
3306
|
+
stage: test
|
3307
|
+
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
3308
|
+
variables:
|
3309
|
+
CC: clang-3.7
|
3310
|
+
CXX: clang++-3.7
|
3311
|
+
LD: clang-3.7
|
3312
|
+
CFLAGS: "-DMRB_UTF8_STRING=1"
|
3313
|
+
LDFLAGS: ''
|
3314
|
+
script: env; rake --verbose all test
|
3315
|
+
Test clang-3.7 64bit_nan:
|
3316
|
+
stage: test
|
3317
|
+
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
3318
|
+
variables:
|
3319
|
+
CC: clang-3.7
|
3320
|
+
CXX: clang++-3.7
|
3321
|
+
LD: clang-3.7
|
3322
|
+
CFLAGS: "-DMRB_NAN_BOXING=1"
|
3323
|
+
LDFLAGS: ''
|
3324
|
+
script: env; rake --verbose all test
|
3325
|
+
Test clang-3.7 64bit_nan_utf8:
|
3326
|
+
stage: test
|
3327
|
+
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
3328
|
+
variables:
|
3329
|
+
CC: clang-3.7
|
3330
|
+
CXX: clang++-3.7
|
3331
|
+
LD: clang-3.7
|
3332
|
+
CFLAGS: "-DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
3333
|
+
LDFLAGS: ''
|
3334
|
+
script: env; rake --verbose all test
|
3335
|
+
Test clang-3.7 64bit_word:
|
3336
|
+
stage: test
|
3337
|
+
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
3338
|
+
variables:
|
3339
|
+
CC: clang-3.7
|
3340
|
+
CXX: clang++-3.7
|
3341
|
+
LD: clang-3.7
|
3342
|
+
CFLAGS: "-DMRB_WORD_BOXING=1"
|
3343
|
+
LDFLAGS: ''
|
3344
|
+
script: env; rake --verbose all test
|
3345
|
+
Test clang-3.7 64bit_word_utf8:
|
3346
|
+
stage: test
|
3347
|
+
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
3348
|
+
variables:
|
3349
|
+
CC: clang-3.7
|
3350
|
+
CXX: clang++-3.7
|
3351
|
+
LD: clang-3.7
|
3352
|
+
CFLAGS: "-DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
3353
|
+
LDFLAGS: ''
|
3354
|
+
script: env; rake --verbose all test
|
3355
|
+
Test clang-3.7 64bit_int16:
|
2416
3356
|
stage: test
|
2417
3357
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2418
3358
|
variables:
|
2419
3359
|
CC: clang-3.7
|
2420
3360
|
CXX: clang++-3.7
|
2421
3361
|
LD: clang-3.7
|
2422
|
-
CFLAGS: "-
|
3362
|
+
CFLAGS: "-DMRB_INT16=1"
|
2423
3363
|
LDFLAGS: ''
|
2424
|
-
script: env;
|
2425
|
-
Test clang-3.7
|
3364
|
+
script: env; rake --verbose all test
|
3365
|
+
Test clang-3.7 64bit_int16_utf8:
|
2426
3366
|
stage: test
|
2427
3367
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2428
3368
|
variables:
|
2429
3369
|
CC: clang-3.7
|
2430
3370
|
CXX: clang++-3.7
|
2431
3371
|
LD: clang-3.7
|
2432
|
-
CFLAGS: "-
|
3372
|
+
CFLAGS: "-DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
2433
3373
|
LDFLAGS: ''
|
2434
|
-
script: env;
|
2435
|
-
Test clang-3.7
|
3374
|
+
script: env; rake --verbose all test
|
3375
|
+
Test clang-3.7 64bit_int16_nan:
|
2436
3376
|
stage: test
|
2437
3377
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2438
3378
|
variables:
|
2439
3379
|
CC: clang-3.7
|
2440
3380
|
CXX: clang++-3.7
|
2441
3381
|
LD: clang-3.7
|
2442
|
-
CFLAGS: "-DMRB_NAN_BOXING=1"
|
3382
|
+
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
2443
3383
|
LDFLAGS: ''
|
2444
|
-
script: env;
|
2445
|
-
Test clang-3.7
|
3384
|
+
script: env; rake --verbose all test
|
3385
|
+
Test clang-3.7 64bit_int16_nan_utf8:
|
2446
3386
|
stage: test
|
2447
3387
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2448
3388
|
variables:
|
2449
3389
|
CC: clang-3.7
|
2450
3390
|
CXX: clang++-3.7
|
2451
3391
|
LD: clang-3.7
|
2452
|
-
CFLAGS: "-DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
3392
|
+
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
2453
3393
|
LDFLAGS: ''
|
2454
|
-
script: env;
|
2455
|
-
Test clang-3.7
|
3394
|
+
script: env; rake --verbose all test
|
3395
|
+
Test clang-3.7 64bit_int64:
|
2456
3396
|
stage: test
|
2457
3397
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2458
3398
|
variables:
|
2459
3399
|
CC: clang-3.7
|
2460
3400
|
CXX: clang++-3.7
|
2461
3401
|
LD: clang-3.7
|
2462
|
-
CFLAGS: "-
|
3402
|
+
CFLAGS: "-DMRB_INT64=1"
|
2463
3403
|
LDFLAGS: ''
|
2464
|
-
script: env;
|
2465
|
-
Test clang-3.7
|
3404
|
+
script: env; rake --verbose all test
|
3405
|
+
Test clang-3.7 64bit_int64_utf8:
|
2466
3406
|
stage: test
|
2467
3407
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2468
3408
|
variables:
|
2469
3409
|
CC: clang-3.7
|
2470
3410
|
CXX: clang++-3.7
|
2471
3411
|
LD: clang-3.7
|
2472
|
-
CFLAGS: "-
|
3412
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
2473
3413
|
LDFLAGS: ''
|
2474
|
-
script: env;
|
2475
|
-
Test clang-3.7
|
3414
|
+
script: env; rake --verbose all test
|
3415
|
+
Test clang-3.7 64bit_int64_word:
|
2476
3416
|
stage: test
|
2477
3417
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2478
3418
|
variables:
|
2479
3419
|
CC: clang-3.7
|
2480
3420
|
CXX: clang++-3.7
|
2481
3421
|
LD: clang-3.7
|
2482
|
-
CFLAGS: "-
|
3422
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
2483
3423
|
LDFLAGS: ''
|
2484
|
-
script: env;
|
2485
|
-
Test clang-3.7
|
3424
|
+
script: env; rake --verbose all test
|
3425
|
+
Test clang-3.7 64bit_int64_word_utf8:
|
2486
3426
|
stage: test
|
2487
3427
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2488
3428
|
variables:
|
2489
3429
|
CC: clang-3.7
|
2490
3430
|
CXX: clang++-3.7
|
2491
3431
|
LD: clang-3.7
|
2492
|
-
CFLAGS: "-
|
3432
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2493
3433
|
LDFLAGS: ''
|
2494
|
-
script: env;
|
2495
|
-
Test clang-3.7
|
3434
|
+
script: env; rake --verbose all test
|
3435
|
+
Test clang-3.7 64bit_float:
|
2496
3436
|
stage: test
|
2497
3437
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2498
3438
|
variables:
|
2499
3439
|
CC: clang-3.7
|
2500
3440
|
CXX: clang++-3.7
|
2501
3441
|
LD: clang-3.7
|
2502
|
-
CFLAGS: "-
|
3442
|
+
CFLAGS: "-DMRB_USE_FLOAT=1"
|
2503
3443
|
LDFLAGS: ''
|
2504
|
-
script: env;
|
2505
|
-
Test clang-3.7
|
3444
|
+
script: env; rake --verbose all test
|
3445
|
+
Test clang-3.7 64bit_float_utf8:
|
2506
3446
|
stage: test
|
2507
3447
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2508
3448
|
variables:
|
2509
3449
|
CC: clang-3.7
|
2510
3450
|
CXX: clang++-3.7
|
2511
3451
|
LD: clang-3.7
|
2512
|
-
CFLAGS: "-
|
3452
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
2513
3453
|
LDFLAGS: ''
|
2514
|
-
script: env;
|
2515
|
-
Test clang-3.7
|
3454
|
+
script: env; rake --verbose all test
|
3455
|
+
Test clang-3.7 64bit_float_word:
|
2516
3456
|
stage: test
|
2517
3457
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2518
3458
|
variables:
|
@@ -2521,8 +3461,8 @@ Test clang-3.7 64bit_float:
|
|
2521
3461
|
LD: clang-3.7
|
2522
3462
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
2523
3463
|
LDFLAGS: ''
|
2524
|
-
script: env;
|
2525
|
-
Test clang-3.7
|
3464
|
+
script: env; rake --verbose all test
|
3465
|
+
Test clang-3.7 64bit_float_word_utf8:
|
2526
3466
|
stage: test
|
2527
3467
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2528
3468
|
variables:
|
@@ -2531,7 +3471,7 @@ Test clang-3.7 64bit_float_utf8:
|
|
2531
3471
|
LD: clang-3.7
|
2532
3472
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2533
3473
|
LDFLAGS: ''
|
2534
|
-
script: env;
|
3474
|
+
script: env; rake --verbose all test
|
2535
3475
|
Test clang-3.7 64bit_float_int16:
|
2536
3476
|
stage: test
|
2537
3477
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2541,7 +3481,7 @@ Test clang-3.7 64bit_float_int16:
|
|
2541
3481
|
LD: clang-3.7
|
2542
3482
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
2543
3483
|
LDFLAGS: ''
|
2544
|
-
script: env;
|
3484
|
+
script: env; rake --verbose all test
|
2545
3485
|
Test clang-3.7 64bit_float_int16_utf8:
|
2546
3486
|
stage: test
|
2547
3487
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2551,7 +3491,7 @@ Test clang-3.7 64bit_float_int16_utf8:
|
|
2551
3491
|
LD: clang-3.7
|
2552
3492
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
2553
3493
|
LDFLAGS: ''
|
2554
|
-
script: env;
|
3494
|
+
script: env; rake --verbose all test
|
2555
3495
|
Test clang-3.7 64bit_float_int64:
|
2556
3496
|
stage: test
|
2557
3497
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
@@ -2559,10 +3499,30 @@ Test clang-3.7 64bit_float_int64:
|
|
2559
3499
|
CC: clang-3.7
|
2560
3500
|
CXX: clang++-3.7
|
2561
3501
|
LD: clang-3.7
|
2562
|
-
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1
|
3502
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
2563
3503
|
LDFLAGS: ''
|
2564
|
-
script: env;
|
3504
|
+
script: env; rake --verbose all test
|
2565
3505
|
Test clang-3.7 64bit_float_int64_utf8:
|
3506
|
+
stage: test
|
3507
|
+
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
3508
|
+
variables:
|
3509
|
+
CC: clang-3.7
|
3510
|
+
CXX: clang++-3.7
|
3511
|
+
LD: clang-3.7
|
3512
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
3513
|
+
LDFLAGS: ''
|
3514
|
+
script: env; rake --verbose all test
|
3515
|
+
Test clang-3.7 64bit_float_int64_word:
|
3516
|
+
stage: test
|
3517
|
+
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
3518
|
+
variables:
|
3519
|
+
CC: clang-3.7
|
3520
|
+
CXX: clang++-3.7
|
3521
|
+
LD: clang-3.7
|
3522
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
3523
|
+
LDFLAGS: ''
|
3524
|
+
script: env; rake --verbose all test
|
3525
|
+
Test clang-3.7 64bit_float_int64_word_utf8:
|
2566
3526
|
stage: test
|
2567
3527
|
image: registry.gitlab.com/dabroz/mruby:clang37_0.7
|
2568
3528
|
variables:
|
@@ -2571,7 +3531,7 @@ Test clang-3.7 64bit_float_int64_utf8:
|
|
2571
3531
|
LD: clang-3.7
|
2572
3532
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2573
3533
|
LDFLAGS: ''
|
2574
|
-
script: env;
|
3534
|
+
script: env; rake --verbose all test
|
2575
3535
|
Test clang-3.8 32bit:
|
2576
3536
|
stage: test
|
2577
3537
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2579,9 +3539,9 @@ Test clang-3.8 32bit:
|
|
2579
3539
|
CC: clang-3.8
|
2580
3540
|
CXX: clang++-3.8
|
2581
3541
|
LD: clang-3.8
|
2582
|
-
CFLAGS: "-m32
|
3542
|
+
CFLAGS: "-m32 "
|
2583
3543
|
LDFLAGS: "-m32"
|
2584
|
-
script: env;
|
3544
|
+
script: env; rake --verbose all test
|
2585
3545
|
Test clang-3.8 32bit_utf8:
|
2586
3546
|
stage: test
|
2587
3547
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2589,9 +3549,9 @@ Test clang-3.8 32bit_utf8:
|
|
2589
3549
|
CC: clang-3.8
|
2590
3550
|
CXX: clang++-3.8
|
2591
3551
|
LD: clang-3.8
|
2592
|
-
CFLAGS: "-m32 -
|
3552
|
+
CFLAGS: "-m32 -DMRB_UTF8_STRING=1"
|
2593
3553
|
LDFLAGS: "-m32"
|
2594
|
-
script: env;
|
3554
|
+
script: env; rake --verbose all test
|
2595
3555
|
Test clang-3.8 32bit_nan:
|
2596
3556
|
stage: test
|
2597
3557
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2601,7 +3561,7 @@ Test clang-3.8 32bit_nan:
|
|
2601
3561
|
LD: clang-3.8
|
2602
3562
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1"
|
2603
3563
|
LDFLAGS: "-m32"
|
2604
|
-
script: env;
|
3564
|
+
script: env; rake --verbose all test
|
2605
3565
|
Test clang-3.8 32bit_nan_utf8:
|
2606
3566
|
stage: test
|
2607
3567
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2611,7 +3571,27 @@ Test clang-3.8 32bit_nan_utf8:
|
|
2611
3571
|
LD: clang-3.8
|
2612
3572
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
2613
3573
|
LDFLAGS: "-m32"
|
2614
|
-
script: env;
|
3574
|
+
script: env; rake --verbose all test
|
3575
|
+
Test clang-3.8 32bit_word:
|
3576
|
+
stage: test
|
3577
|
+
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
3578
|
+
variables:
|
3579
|
+
CC: clang-3.8
|
3580
|
+
CXX: clang++-3.8
|
3581
|
+
LD: clang-3.8
|
3582
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1"
|
3583
|
+
LDFLAGS: "-m32"
|
3584
|
+
script: env; rake --verbose all test
|
3585
|
+
Test clang-3.8 32bit_word_utf8:
|
3586
|
+
stage: test
|
3587
|
+
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
3588
|
+
variables:
|
3589
|
+
CC: clang-3.8
|
3590
|
+
CXX: clang++-3.8
|
3591
|
+
LD: clang-3.8
|
3592
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
3593
|
+
LDFLAGS: "-m32"
|
3594
|
+
script: env; rake --verbose all test
|
2615
3595
|
Test clang-3.8 32bit_int16:
|
2616
3596
|
stage: test
|
2617
3597
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2621,7 +3601,7 @@ Test clang-3.8 32bit_int16:
|
|
2621
3601
|
LD: clang-3.8
|
2622
3602
|
CFLAGS: "-m32 -DMRB_INT16=1"
|
2623
3603
|
LDFLAGS: "-m32"
|
2624
|
-
script: env;
|
3604
|
+
script: env; rake --verbose all test
|
2625
3605
|
Test clang-3.8 32bit_int16_utf8:
|
2626
3606
|
stage: test
|
2627
3607
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2631,7 +3611,7 @@ Test clang-3.8 32bit_int16_utf8:
|
|
2631
3611
|
LD: clang-3.8
|
2632
3612
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
2633
3613
|
LDFLAGS: "-m32"
|
2634
|
-
script: env;
|
3614
|
+
script: env; rake --verbose all test
|
2635
3615
|
Test clang-3.8 32bit_int16_nan:
|
2636
3616
|
stage: test
|
2637
3617
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2641,7 +3621,7 @@ Test clang-3.8 32bit_int16_nan:
|
|
2641
3621
|
LD: clang-3.8
|
2642
3622
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
2643
3623
|
LDFLAGS: "-m32"
|
2644
|
-
script: env;
|
3624
|
+
script: env; rake --verbose all test
|
2645
3625
|
Test clang-3.8 32bit_int16_nan_utf8:
|
2646
3626
|
stage: test
|
2647
3627
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2651,7 +3631,7 @@ Test clang-3.8 32bit_int16_nan_utf8:
|
|
2651
3631
|
LD: clang-3.8
|
2652
3632
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
2653
3633
|
LDFLAGS: "-m32"
|
2654
|
-
script: env;
|
3634
|
+
script: env; rake --verbose all test
|
2655
3635
|
Test clang-3.8 32bit_int64:
|
2656
3636
|
stage: test
|
2657
3637
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2661,7 +3641,7 @@ Test clang-3.8 32bit_int64:
|
|
2661
3641
|
LD: clang-3.8
|
2662
3642
|
CFLAGS: "-m32 -DMRB_INT64=1"
|
2663
3643
|
LDFLAGS: "-m32"
|
2664
|
-
script: env;
|
3644
|
+
script: env; rake --verbose all test
|
2665
3645
|
Test clang-3.8 32bit_int64_utf8:
|
2666
3646
|
stage: test
|
2667
3647
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2671,7 +3651,7 @@ Test clang-3.8 32bit_int64_utf8:
|
|
2671
3651
|
LD: clang-3.8
|
2672
3652
|
CFLAGS: "-m32 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
2673
3653
|
LDFLAGS: "-m32"
|
2674
|
-
script: env;
|
3654
|
+
script: env; rake --verbose all test
|
2675
3655
|
Test clang-3.8 32bit_float:
|
2676
3656
|
stage: test
|
2677
3657
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2679,10 +3659,30 @@ Test clang-3.8 32bit_float:
|
|
2679
3659
|
CC: clang-3.8
|
2680
3660
|
CXX: clang++-3.8
|
2681
3661
|
LD: clang-3.8
|
2682
|
-
CFLAGS: "-m32 -DMRB_USE_FLOAT=1
|
3662
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1"
|
2683
3663
|
LDFLAGS: "-m32"
|
2684
|
-
script: env;
|
3664
|
+
script: env; rake --verbose all test
|
2685
3665
|
Test clang-3.8 32bit_float_utf8:
|
3666
|
+
stage: test
|
3667
|
+
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
3668
|
+
variables:
|
3669
|
+
CC: clang-3.8
|
3670
|
+
CXX: clang++-3.8
|
3671
|
+
LD: clang-3.8
|
3672
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
3673
|
+
LDFLAGS: "-m32"
|
3674
|
+
script: env; rake --verbose all test
|
3675
|
+
Test clang-3.8 32bit_float_word:
|
3676
|
+
stage: test
|
3677
|
+
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
3678
|
+
variables:
|
3679
|
+
CC: clang-3.8
|
3680
|
+
CXX: clang++-3.8
|
3681
|
+
LD: clang-3.8
|
3682
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
3683
|
+
LDFLAGS: "-m32"
|
3684
|
+
script: env; rake --verbose all test
|
3685
|
+
Test clang-3.8 32bit_float_word_utf8:
|
2686
3686
|
stage: test
|
2687
3687
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
2688
3688
|
variables:
|
@@ -2691,7 +3691,7 @@ Test clang-3.8 32bit_float_utf8:
|
|
2691
3691
|
LD: clang-3.8
|
2692
3692
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2693
3693
|
LDFLAGS: "-m32"
|
2694
|
-
script: env;
|
3694
|
+
script: env; rake --verbose all test
|
2695
3695
|
Test clang-3.8 32bit_float_int16:
|
2696
3696
|
stage: test
|
2697
3697
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2701,7 +3701,7 @@ Test clang-3.8 32bit_float_int16:
|
|
2701
3701
|
LD: clang-3.8
|
2702
3702
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
2703
3703
|
LDFLAGS: "-m32"
|
2704
|
-
script: env;
|
3704
|
+
script: env; rake --verbose all test
|
2705
3705
|
Test clang-3.8 32bit_float_int16_utf8:
|
2706
3706
|
stage: test
|
2707
3707
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2711,7 +3711,7 @@ Test clang-3.8 32bit_float_int16_utf8:
|
|
2711
3711
|
LD: clang-3.8
|
2712
3712
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
2713
3713
|
LDFLAGS: "-m32"
|
2714
|
-
script: env;
|
3714
|
+
script: env; rake --verbose all test
|
2715
3715
|
Test clang-3.8 32bit_float_int64:
|
2716
3716
|
stage: test
|
2717
3717
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2721,7 +3721,7 @@ Test clang-3.8 32bit_float_int64:
|
|
2721
3721
|
LD: clang-3.8
|
2722
3722
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
2723
3723
|
LDFLAGS: "-m32"
|
2724
|
-
script: env;
|
3724
|
+
script: env; rake --verbose all test
|
2725
3725
|
Test clang-3.8 32bit_float_int64_utf8:
|
2726
3726
|
stage: test
|
2727
3727
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2731,7 +3731,7 @@ Test clang-3.8 32bit_float_int64_utf8:
|
|
2731
3731
|
LD: clang-3.8
|
2732
3732
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
2733
3733
|
LDFLAGS: "-m32"
|
2734
|
-
script: env;
|
3734
|
+
script: env; rake --verbose all test
|
2735
3735
|
Test clang-3.8 64bit:
|
2736
3736
|
stage: test
|
2737
3737
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2739,9 +3739,9 @@ Test clang-3.8 64bit:
|
|
2739
3739
|
CC: clang-3.8
|
2740
3740
|
CXX: clang++-3.8
|
2741
3741
|
LD: clang-3.8
|
2742
|
-
CFLAGS:
|
3742
|
+
CFLAGS: ''
|
2743
3743
|
LDFLAGS: ''
|
2744
|
-
script: env;
|
3744
|
+
script: env; rake --verbose all test
|
2745
3745
|
Test clang-3.8 64bit_utf8:
|
2746
3746
|
stage: test
|
2747
3747
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2749,9 +3749,9 @@ Test clang-3.8 64bit_utf8:
|
|
2749
3749
|
CC: clang-3.8
|
2750
3750
|
CXX: clang++-3.8
|
2751
3751
|
LD: clang-3.8
|
2752
|
-
CFLAGS: "-
|
3752
|
+
CFLAGS: "-DMRB_UTF8_STRING=1"
|
2753
3753
|
LDFLAGS: ''
|
2754
|
-
script: env;
|
3754
|
+
script: env; rake --verbose all test
|
2755
3755
|
Test clang-3.8 64bit_nan:
|
2756
3756
|
stage: test
|
2757
3757
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2761,7 +3761,7 @@ Test clang-3.8 64bit_nan:
|
|
2761
3761
|
LD: clang-3.8
|
2762
3762
|
CFLAGS: "-DMRB_NAN_BOXING=1"
|
2763
3763
|
LDFLAGS: ''
|
2764
|
-
script: env;
|
3764
|
+
script: env; rake --verbose all test
|
2765
3765
|
Test clang-3.8 64bit_nan_utf8:
|
2766
3766
|
stage: test
|
2767
3767
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2771,7 +3771,27 @@ Test clang-3.8 64bit_nan_utf8:
|
|
2771
3771
|
LD: clang-3.8
|
2772
3772
|
CFLAGS: "-DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
2773
3773
|
LDFLAGS: ''
|
2774
|
-
script: env;
|
3774
|
+
script: env; rake --verbose all test
|
3775
|
+
Test clang-3.8 64bit_word:
|
3776
|
+
stage: test
|
3777
|
+
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
3778
|
+
variables:
|
3779
|
+
CC: clang-3.8
|
3780
|
+
CXX: clang++-3.8
|
3781
|
+
LD: clang-3.8
|
3782
|
+
CFLAGS: "-DMRB_WORD_BOXING=1"
|
3783
|
+
LDFLAGS: ''
|
3784
|
+
script: env; rake --verbose all test
|
3785
|
+
Test clang-3.8 64bit_word_utf8:
|
3786
|
+
stage: test
|
3787
|
+
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
3788
|
+
variables:
|
3789
|
+
CC: clang-3.8
|
3790
|
+
CXX: clang++-3.8
|
3791
|
+
LD: clang-3.8
|
3792
|
+
CFLAGS: "-DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
3793
|
+
LDFLAGS: ''
|
3794
|
+
script: env; rake --verbose all test
|
2775
3795
|
Test clang-3.8 64bit_int16:
|
2776
3796
|
stage: test
|
2777
3797
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2781,7 +3801,7 @@ Test clang-3.8 64bit_int16:
|
|
2781
3801
|
LD: clang-3.8
|
2782
3802
|
CFLAGS: "-DMRB_INT16=1"
|
2783
3803
|
LDFLAGS: ''
|
2784
|
-
script: env;
|
3804
|
+
script: env; rake --verbose all test
|
2785
3805
|
Test clang-3.8 64bit_int16_utf8:
|
2786
3806
|
stage: test
|
2787
3807
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2791,7 +3811,7 @@ Test clang-3.8 64bit_int16_utf8:
|
|
2791
3811
|
LD: clang-3.8
|
2792
3812
|
CFLAGS: "-DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
2793
3813
|
LDFLAGS: ''
|
2794
|
-
script: env;
|
3814
|
+
script: env; rake --verbose all test
|
2795
3815
|
Test clang-3.8 64bit_int16_nan:
|
2796
3816
|
stage: test
|
2797
3817
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2801,7 +3821,7 @@ Test clang-3.8 64bit_int16_nan:
|
|
2801
3821
|
LD: clang-3.8
|
2802
3822
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
2803
3823
|
LDFLAGS: ''
|
2804
|
-
script: env;
|
3824
|
+
script: env; rake --verbose all test
|
2805
3825
|
Test clang-3.8 64bit_int16_nan_utf8:
|
2806
3826
|
stage: test
|
2807
3827
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2811,7 +3831,7 @@ Test clang-3.8 64bit_int16_nan_utf8:
|
|
2811
3831
|
LD: clang-3.8
|
2812
3832
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
2813
3833
|
LDFLAGS: ''
|
2814
|
-
script: env;
|
3834
|
+
script: env; rake --verbose all test
|
2815
3835
|
Test clang-3.8 64bit_int64:
|
2816
3836
|
stage: test
|
2817
3837
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2819,10 +3839,30 @@ Test clang-3.8 64bit_int64:
|
|
2819
3839
|
CC: clang-3.8
|
2820
3840
|
CXX: clang++-3.8
|
2821
3841
|
LD: clang-3.8
|
2822
|
-
CFLAGS: "-DMRB_INT64=1
|
3842
|
+
CFLAGS: "-DMRB_INT64=1"
|
2823
3843
|
LDFLAGS: ''
|
2824
|
-
script: env;
|
3844
|
+
script: env; rake --verbose all test
|
2825
3845
|
Test clang-3.8 64bit_int64_utf8:
|
3846
|
+
stage: test
|
3847
|
+
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
3848
|
+
variables:
|
3849
|
+
CC: clang-3.8
|
3850
|
+
CXX: clang++-3.8
|
3851
|
+
LD: clang-3.8
|
3852
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
3853
|
+
LDFLAGS: ''
|
3854
|
+
script: env; rake --verbose all test
|
3855
|
+
Test clang-3.8 64bit_int64_word:
|
3856
|
+
stage: test
|
3857
|
+
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
3858
|
+
variables:
|
3859
|
+
CC: clang-3.8
|
3860
|
+
CXX: clang++-3.8
|
3861
|
+
LD: clang-3.8
|
3862
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
3863
|
+
LDFLAGS: ''
|
3864
|
+
script: env; rake --verbose all test
|
3865
|
+
Test clang-3.8 64bit_int64_word_utf8:
|
2826
3866
|
stage: test
|
2827
3867
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
2828
3868
|
variables:
|
@@ -2831,7 +3871,7 @@ Test clang-3.8 64bit_int64_utf8:
|
|
2831
3871
|
LD: clang-3.8
|
2832
3872
|
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2833
3873
|
LDFLAGS: ''
|
2834
|
-
script: env;
|
3874
|
+
script: env; rake --verbose all test
|
2835
3875
|
Test clang-3.8 64bit_float:
|
2836
3876
|
stage: test
|
2837
3877
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2839,10 +3879,30 @@ Test clang-3.8 64bit_float:
|
|
2839
3879
|
CC: clang-3.8
|
2840
3880
|
CXX: clang++-3.8
|
2841
3881
|
LD: clang-3.8
|
2842
|
-
CFLAGS: "-DMRB_USE_FLOAT=1
|
3882
|
+
CFLAGS: "-DMRB_USE_FLOAT=1"
|
2843
3883
|
LDFLAGS: ''
|
2844
|
-
script: env;
|
3884
|
+
script: env; rake --verbose all test
|
2845
3885
|
Test clang-3.8 64bit_float_utf8:
|
3886
|
+
stage: test
|
3887
|
+
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
3888
|
+
variables:
|
3889
|
+
CC: clang-3.8
|
3890
|
+
CXX: clang++-3.8
|
3891
|
+
LD: clang-3.8
|
3892
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
3893
|
+
LDFLAGS: ''
|
3894
|
+
script: env; rake --verbose all test
|
3895
|
+
Test clang-3.8 64bit_float_word:
|
3896
|
+
stage: test
|
3897
|
+
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
3898
|
+
variables:
|
3899
|
+
CC: clang-3.8
|
3900
|
+
CXX: clang++-3.8
|
3901
|
+
LD: clang-3.8
|
3902
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
3903
|
+
LDFLAGS: ''
|
3904
|
+
script: env; rake --verbose all test
|
3905
|
+
Test clang-3.8 64bit_float_word_utf8:
|
2846
3906
|
stage: test
|
2847
3907
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
2848
3908
|
variables:
|
@@ -2851,7 +3911,7 @@ Test clang-3.8 64bit_float_utf8:
|
|
2851
3911
|
LD: clang-3.8
|
2852
3912
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2853
3913
|
LDFLAGS: ''
|
2854
|
-
script: env;
|
3914
|
+
script: env; rake --verbose all test
|
2855
3915
|
Test clang-3.8 64bit_float_int16:
|
2856
3916
|
stage: test
|
2857
3917
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2861,7 +3921,7 @@ Test clang-3.8 64bit_float_int16:
|
|
2861
3921
|
LD: clang-3.8
|
2862
3922
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
2863
3923
|
LDFLAGS: ''
|
2864
|
-
script: env;
|
3924
|
+
script: env; rake --verbose all test
|
2865
3925
|
Test clang-3.8 64bit_float_int16_utf8:
|
2866
3926
|
stage: test
|
2867
3927
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2871,7 +3931,7 @@ Test clang-3.8 64bit_float_int16_utf8:
|
|
2871
3931
|
LD: clang-3.8
|
2872
3932
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
2873
3933
|
LDFLAGS: ''
|
2874
|
-
script: env;
|
3934
|
+
script: env; rake --verbose all test
|
2875
3935
|
Test clang-3.8 64bit_float_int64:
|
2876
3936
|
stage: test
|
2877
3937
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
@@ -2879,10 +3939,30 @@ Test clang-3.8 64bit_float_int64:
|
|
2879
3939
|
CC: clang-3.8
|
2880
3940
|
CXX: clang++-3.8
|
2881
3941
|
LD: clang-3.8
|
2882
|
-
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1
|
3942
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
2883
3943
|
LDFLAGS: ''
|
2884
|
-
script: env;
|
3944
|
+
script: env; rake --verbose all test
|
2885
3945
|
Test clang-3.8 64bit_float_int64_utf8:
|
3946
|
+
stage: test
|
3947
|
+
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
3948
|
+
variables:
|
3949
|
+
CC: clang-3.8
|
3950
|
+
CXX: clang++-3.8
|
3951
|
+
LD: clang-3.8
|
3952
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
3953
|
+
LDFLAGS: ''
|
3954
|
+
script: env; rake --verbose all test
|
3955
|
+
Test clang-3.8 64bit_float_int64_word:
|
3956
|
+
stage: test
|
3957
|
+
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
3958
|
+
variables:
|
3959
|
+
CC: clang-3.8
|
3960
|
+
CXX: clang++-3.8
|
3961
|
+
LD: clang-3.8
|
3962
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
3963
|
+
LDFLAGS: ''
|
3964
|
+
script: env; rake --verbose all test
|
3965
|
+
Test clang-3.8 64bit_float_int64_word_utf8:
|
2886
3966
|
stage: test
|
2887
3967
|
image: registry.gitlab.com/dabroz/mruby:clang38_0.7
|
2888
3968
|
variables:
|
@@ -2891,7 +3971,7 @@ Test clang-3.8 64bit_float_int64_utf8:
|
|
2891
3971
|
LD: clang-3.8
|
2892
3972
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
2893
3973
|
LDFLAGS: ''
|
2894
|
-
script: env;
|
3974
|
+
script: env; rake --verbose all test
|
2895
3975
|
Test clang-3.9 32bit:
|
2896
3976
|
stage: test
|
2897
3977
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -2899,9 +3979,9 @@ Test clang-3.9 32bit:
|
|
2899
3979
|
CC: clang-3.9
|
2900
3980
|
CXX: clang++-3.9
|
2901
3981
|
LD: clang-3.9
|
2902
|
-
CFLAGS: "-m32
|
3982
|
+
CFLAGS: "-m32 "
|
2903
3983
|
LDFLAGS: "-m32"
|
2904
|
-
script: env;
|
3984
|
+
script: env; rake --verbose all test
|
2905
3985
|
Test clang-3.9 32bit_utf8:
|
2906
3986
|
stage: test
|
2907
3987
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -2909,9 +3989,9 @@ Test clang-3.9 32bit_utf8:
|
|
2909
3989
|
CC: clang-3.9
|
2910
3990
|
CXX: clang++-3.9
|
2911
3991
|
LD: clang-3.9
|
2912
|
-
CFLAGS: "-m32 -
|
3992
|
+
CFLAGS: "-m32 -DMRB_UTF8_STRING=1"
|
2913
3993
|
LDFLAGS: "-m32"
|
2914
|
-
script: env;
|
3994
|
+
script: env; rake --verbose all test
|
2915
3995
|
Test clang-3.9 32bit_nan:
|
2916
3996
|
stage: test
|
2917
3997
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -2921,7 +4001,7 @@ Test clang-3.9 32bit_nan:
|
|
2921
4001
|
LD: clang-3.9
|
2922
4002
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1"
|
2923
4003
|
LDFLAGS: "-m32"
|
2924
|
-
script: env;
|
4004
|
+
script: env; rake --verbose all test
|
2925
4005
|
Test clang-3.9 32bit_nan_utf8:
|
2926
4006
|
stage: test
|
2927
4007
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -2931,7 +4011,27 @@ Test clang-3.9 32bit_nan_utf8:
|
|
2931
4011
|
LD: clang-3.9
|
2932
4012
|
CFLAGS: "-m32 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
2933
4013
|
LDFLAGS: "-m32"
|
2934
|
-
script: env;
|
4014
|
+
script: env; rake --verbose all test
|
4015
|
+
Test clang-3.9 32bit_word:
|
4016
|
+
stage: test
|
4017
|
+
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
4018
|
+
variables:
|
4019
|
+
CC: clang-3.9
|
4020
|
+
CXX: clang++-3.9
|
4021
|
+
LD: clang-3.9
|
4022
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1"
|
4023
|
+
LDFLAGS: "-m32"
|
4024
|
+
script: env; rake --verbose all test
|
4025
|
+
Test clang-3.9 32bit_word_utf8:
|
4026
|
+
stage: test
|
4027
|
+
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
4028
|
+
variables:
|
4029
|
+
CC: clang-3.9
|
4030
|
+
CXX: clang++-3.9
|
4031
|
+
LD: clang-3.9
|
4032
|
+
CFLAGS: "-m32 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
4033
|
+
LDFLAGS: "-m32"
|
4034
|
+
script: env; rake --verbose all test
|
2935
4035
|
Test clang-3.9 32bit_int16:
|
2936
4036
|
stage: test
|
2937
4037
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -2941,7 +4041,7 @@ Test clang-3.9 32bit_int16:
|
|
2941
4041
|
LD: clang-3.9
|
2942
4042
|
CFLAGS: "-m32 -DMRB_INT16=1"
|
2943
4043
|
LDFLAGS: "-m32"
|
2944
|
-
script: env;
|
4044
|
+
script: env; rake --verbose all test
|
2945
4045
|
Test clang-3.9 32bit_int16_utf8:
|
2946
4046
|
stage: test
|
2947
4047
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -2951,7 +4051,7 @@ Test clang-3.9 32bit_int16_utf8:
|
|
2951
4051
|
LD: clang-3.9
|
2952
4052
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
2953
4053
|
LDFLAGS: "-m32"
|
2954
|
-
script: env;
|
4054
|
+
script: env; rake --verbose all test
|
2955
4055
|
Test clang-3.9 32bit_int16_nan:
|
2956
4056
|
stage: test
|
2957
4057
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -2961,7 +4061,7 @@ Test clang-3.9 32bit_int16_nan:
|
|
2961
4061
|
LD: clang-3.9
|
2962
4062
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
2963
4063
|
LDFLAGS: "-m32"
|
2964
|
-
script: env;
|
4064
|
+
script: env; rake --verbose all test
|
2965
4065
|
Test clang-3.9 32bit_int16_nan_utf8:
|
2966
4066
|
stage: test
|
2967
4067
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -2971,7 +4071,7 @@ Test clang-3.9 32bit_int16_nan_utf8:
|
|
2971
4071
|
LD: clang-3.9
|
2972
4072
|
CFLAGS: "-m32 -DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
2973
4073
|
LDFLAGS: "-m32"
|
2974
|
-
script: env;
|
4074
|
+
script: env; rake --verbose all test
|
2975
4075
|
Test clang-3.9 32bit_int64:
|
2976
4076
|
stage: test
|
2977
4077
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -2981,7 +4081,7 @@ Test clang-3.9 32bit_int64:
|
|
2981
4081
|
LD: clang-3.9
|
2982
4082
|
CFLAGS: "-m32 -DMRB_INT64=1"
|
2983
4083
|
LDFLAGS: "-m32"
|
2984
|
-
script: env;
|
4084
|
+
script: env; rake --verbose all test
|
2985
4085
|
Test clang-3.9 32bit_int64_utf8:
|
2986
4086
|
stage: test
|
2987
4087
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -2991,7 +4091,7 @@ Test clang-3.9 32bit_int64_utf8:
|
|
2991
4091
|
LD: clang-3.9
|
2992
4092
|
CFLAGS: "-m32 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
2993
4093
|
LDFLAGS: "-m32"
|
2994
|
-
script: env;
|
4094
|
+
script: env; rake --verbose all test
|
2995
4095
|
Test clang-3.9 32bit_float:
|
2996
4096
|
stage: test
|
2997
4097
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -2999,10 +4099,30 @@ Test clang-3.9 32bit_float:
|
|
2999
4099
|
CC: clang-3.9
|
3000
4100
|
CXX: clang++-3.9
|
3001
4101
|
LD: clang-3.9
|
3002
|
-
CFLAGS: "-m32 -DMRB_USE_FLOAT=1
|
4102
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1"
|
3003
4103
|
LDFLAGS: "-m32"
|
3004
|
-
script: env;
|
4104
|
+
script: env; rake --verbose all test
|
3005
4105
|
Test clang-3.9 32bit_float_utf8:
|
4106
|
+
stage: test
|
4107
|
+
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
4108
|
+
variables:
|
4109
|
+
CC: clang-3.9
|
4110
|
+
CXX: clang++-3.9
|
4111
|
+
LD: clang-3.9
|
4112
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
4113
|
+
LDFLAGS: "-m32"
|
4114
|
+
script: env; rake --verbose all test
|
4115
|
+
Test clang-3.9 32bit_float_word:
|
4116
|
+
stage: test
|
4117
|
+
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
4118
|
+
variables:
|
4119
|
+
CC: clang-3.9
|
4120
|
+
CXX: clang++-3.9
|
4121
|
+
LD: clang-3.9
|
4122
|
+
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
4123
|
+
LDFLAGS: "-m32"
|
4124
|
+
script: env; rake --verbose all test
|
4125
|
+
Test clang-3.9 32bit_float_word_utf8:
|
3006
4126
|
stage: test
|
3007
4127
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
3008
4128
|
variables:
|
@@ -3011,7 +4131,7 @@ Test clang-3.9 32bit_float_utf8:
|
|
3011
4131
|
LD: clang-3.9
|
3012
4132
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
3013
4133
|
LDFLAGS: "-m32"
|
3014
|
-
script: env;
|
4134
|
+
script: env; rake --verbose all test
|
3015
4135
|
Test clang-3.9 32bit_float_int16:
|
3016
4136
|
stage: test
|
3017
4137
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3021,7 +4141,7 @@ Test clang-3.9 32bit_float_int16:
|
|
3021
4141
|
LD: clang-3.9
|
3022
4142
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
3023
4143
|
LDFLAGS: "-m32"
|
3024
|
-
script: env;
|
4144
|
+
script: env; rake --verbose all test
|
3025
4145
|
Test clang-3.9 32bit_float_int16_utf8:
|
3026
4146
|
stage: test
|
3027
4147
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3031,7 +4151,7 @@ Test clang-3.9 32bit_float_int16_utf8:
|
|
3031
4151
|
LD: clang-3.9
|
3032
4152
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
3033
4153
|
LDFLAGS: "-m32"
|
3034
|
-
script: env;
|
4154
|
+
script: env; rake --verbose all test
|
3035
4155
|
Test clang-3.9 32bit_float_int64:
|
3036
4156
|
stage: test
|
3037
4157
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3041,7 +4161,7 @@ Test clang-3.9 32bit_float_int64:
|
|
3041
4161
|
LD: clang-3.9
|
3042
4162
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
3043
4163
|
LDFLAGS: "-m32"
|
3044
|
-
script: env;
|
4164
|
+
script: env; rake --verbose all test
|
3045
4165
|
Test clang-3.9 32bit_float_int64_utf8:
|
3046
4166
|
stage: test
|
3047
4167
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3051,7 +4171,7 @@ Test clang-3.9 32bit_float_int64_utf8:
|
|
3051
4171
|
LD: clang-3.9
|
3052
4172
|
CFLAGS: "-m32 -DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
3053
4173
|
LDFLAGS: "-m32"
|
3054
|
-
script: env;
|
4174
|
+
script: env; rake --verbose all test
|
3055
4175
|
Test clang-3.9 64bit:
|
3056
4176
|
stage: test
|
3057
4177
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3059,9 +4179,9 @@ Test clang-3.9 64bit:
|
|
3059
4179
|
CC: clang-3.9
|
3060
4180
|
CXX: clang++-3.9
|
3061
4181
|
LD: clang-3.9
|
3062
|
-
CFLAGS:
|
4182
|
+
CFLAGS: ''
|
3063
4183
|
LDFLAGS: ''
|
3064
|
-
script: env;
|
4184
|
+
script: env; rake --verbose all test
|
3065
4185
|
Test clang-3.9 64bit_utf8:
|
3066
4186
|
stage: test
|
3067
4187
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3069,9 +4189,9 @@ Test clang-3.9 64bit_utf8:
|
|
3069
4189
|
CC: clang-3.9
|
3070
4190
|
CXX: clang++-3.9
|
3071
4191
|
LD: clang-3.9
|
3072
|
-
CFLAGS: "-
|
4192
|
+
CFLAGS: "-DMRB_UTF8_STRING=1"
|
3073
4193
|
LDFLAGS: ''
|
3074
|
-
script: env;
|
4194
|
+
script: env; rake --verbose all test
|
3075
4195
|
Test clang-3.9 64bit_nan:
|
3076
4196
|
stage: test
|
3077
4197
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3081,7 +4201,7 @@ Test clang-3.9 64bit_nan:
|
|
3081
4201
|
LD: clang-3.9
|
3082
4202
|
CFLAGS: "-DMRB_NAN_BOXING=1"
|
3083
4203
|
LDFLAGS: ''
|
3084
|
-
script: env;
|
4204
|
+
script: env; rake --verbose all test
|
3085
4205
|
Test clang-3.9 64bit_nan_utf8:
|
3086
4206
|
stage: test
|
3087
4207
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3091,7 +4211,27 @@ Test clang-3.9 64bit_nan_utf8:
|
|
3091
4211
|
LD: clang-3.9
|
3092
4212
|
CFLAGS: "-DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
3093
4213
|
LDFLAGS: ''
|
3094
|
-
script: env;
|
4214
|
+
script: env; rake --verbose all test
|
4215
|
+
Test clang-3.9 64bit_word:
|
4216
|
+
stage: test
|
4217
|
+
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
4218
|
+
variables:
|
4219
|
+
CC: clang-3.9
|
4220
|
+
CXX: clang++-3.9
|
4221
|
+
LD: clang-3.9
|
4222
|
+
CFLAGS: "-DMRB_WORD_BOXING=1"
|
4223
|
+
LDFLAGS: ''
|
4224
|
+
script: env; rake --verbose all test
|
4225
|
+
Test clang-3.9 64bit_word_utf8:
|
4226
|
+
stage: test
|
4227
|
+
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
4228
|
+
variables:
|
4229
|
+
CC: clang-3.9
|
4230
|
+
CXX: clang++-3.9
|
4231
|
+
LD: clang-3.9
|
4232
|
+
CFLAGS: "-DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
4233
|
+
LDFLAGS: ''
|
4234
|
+
script: env; rake --verbose all test
|
3095
4235
|
Test clang-3.9 64bit_int16:
|
3096
4236
|
stage: test
|
3097
4237
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3101,7 +4241,7 @@ Test clang-3.9 64bit_int16:
|
|
3101
4241
|
LD: clang-3.9
|
3102
4242
|
CFLAGS: "-DMRB_INT16=1"
|
3103
4243
|
LDFLAGS: ''
|
3104
|
-
script: env;
|
4244
|
+
script: env; rake --verbose all test
|
3105
4245
|
Test clang-3.9 64bit_int16_utf8:
|
3106
4246
|
stage: test
|
3107
4247
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3111,7 +4251,7 @@ Test clang-3.9 64bit_int16_utf8:
|
|
3111
4251
|
LD: clang-3.9
|
3112
4252
|
CFLAGS: "-DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
3113
4253
|
LDFLAGS: ''
|
3114
|
-
script: env;
|
4254
|
+
script: env; rake --verbose all test
|
3115
4255
|
Test clang-3.9 64bit_int16_nan:
|
3116
4256
|
stage: test
|
3117
4257
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3121,7 +4261,7 @@ Test clang-3.9 64bit_int16_nan:
|
|
3121
4261
|
LD: clang-3.9
|
3122
4262
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1"
|
3123
4263
|
LDFLAGS: ''
|
3124
|
-
script: env;
|
4264
|
+
script: env; rake --verbose all test
|
3125
4265
|
Test clang-3.9 64bit_int16_nan_utf8:
|
3126
4266
|
stage: test
|
3127
4267
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3131,7 +4271,7 @@ Test clang-3.9 64bit_int16_nan_utf8:
|
|
3131
4271
|
LD: clang-3.9
|
3132
4272
|
CFLAGS: "-DMRB_INT16=1 -DMRB_NAN_BOXING=1 -DMRB_UTF8_STRING=1"
|
3133
4273
|
LDFLAGS: ''
|
3134
|
-
script: env;
|
4274
|
+
script: env; rake --verbose all test
|
3135
4275
|
Test clang-3.9 64bit_int64:
|
3136
4276
|
stage: test
|
3137
4277
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3139,10 +4279,30 @@ Test clang-3.9 64bit_int64:
|
|
3139
4279
|
CC: clang-3.9
|
3140
4280
|
CXX: clang++-3.9
|
3141
4281
|
LD: clang-3.9
|
3142
|
-
CFLAGS: "-DMRB_INT64=1
|
4282
|
+
CFLAGS: "-DMRB_INT64=1"
|
3143
4283
|
LDFLAGS: ''
|
3144
|
-
script: env;
|
4284
|
+
script: env; rake --verbose all test
|
3145
4285
|
Test clang-3.9 64bit_int64_utf8:
|
4286
|
+
stage: test
|
4287
|
+
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
4288
|
+
variables:
|
4289
|
+
CC: clang-3.9
|
4290
|
+
CXX: clang++-3.9
|
4291
|
+
LD: clang-3.9
|
4292
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
4293
|
+
LDFLAGS: ''
|
4294
|
+
script: env; rake --verbose all test
|
4295
|
+
Test clang-3.9 64bit_int64_word:
|
4296
|
+
stage: test
|
4297
|
+
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
4298
|
+
variables:
|
4299
|
+
CC: clang-3.9
|
4300
|
+
CXX: clang++-3.9
|
4301
|
+
LD: clang-3.9
|
4302
|
+
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
4303
|
+
LDFLAGS: ''
|
4304
|
+
script: env; rake --verbose all test
|
4305
|
+
Test clang-3.9 64bit_int64_word_utf8:
|
3146
4306
|
stage: test
|
3147
4307
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
3148
4308
|
variables:
|
@@ -3151,7 +4311,7 @@ Test clang-3.9 64bit_int64_utf8:
|
|
3151
4311
|
LD: clang-3.9
|
3152
4312
|
CFLAGS: "-DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
3153
4313
|
LDFLAGS: ''
|
3154
|
-
script: env;
|
4314
|
+
script: env; rake --verbose all test
|
3155
4315
|
Test clang-3.9 64bit_float:
|
3156
4316
|
stage: test
|
3157
4317
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3159,10 +4319,30 @@ Test clang-3.9 64bit_float:
|
|
3159
4319
|
CC: clang-3.9
|
3160
4320
|
CXX: clang++-3.9
|
3161
4321
|
LD: clang-3.9
|
3162
|
-
CFLAGS: "-DMRB_USE_FLOAT=1
|
4322
|
+
CFLAGS: "-DMRB_USE_FLOAT=1"
|
3163
4323
|
LDFLAGS: ''
|
3164
|
-
script: env;
|
4324
|
+
script: env; rake --verbose all test
|
3165
4325
|
Test clang-3.9 64bit_float_utf8:
|
4326
|
+
stage: test
|
4327
|
+
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
4328
|
+
variables:
|
4329
|
+
CC: clang-3.9
|
4330
|
+
CXX: clang++-3.9
|
4331
|
+
LD: clang-3.9
|
4332
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_UTF8_STRING=1"
|
4333
|
+
LDFLAGS: ''
|
4334
|
+
script: env; rake --verbose all test
|
4335
|
+
Test clang-3.9 64bit_float_word:
|
4336
|
+
stage: test
|
4337
|
+
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
4338
|
+
variables:
|
4339
|
+
CC: clang-3.9
|
4340
|
+
CXX: clang++-3.9
|
4341
|
+
LD: clang-3.9
|
4342
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1"
|
4343
|
+
LDFLAGS: ''
|
4344
|
+
script: env; rake --verbose all test
|
4345
|
+
Test clang-3.9 64bit_float_word_utf8:
|
3166
4346
|
stage: test
|
3167
4347
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
3168
4348
|
variables:
|
@@ -3171,7 +4351,7 @@ Test clang-3.9 64bit_float_utf8:
|
|
3171
4351
|
LD: clang-3.9
|
3172
4352
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
3173
4353
|
LDFLAGS: ''
|
3174
|
-
script: env;
|
4354
|
+
script: env; rake --verbose all test
|
3175
4355
|
Test clang-3.9 64bit_float_int16:
|
3176
4356
|
stage: test
|
3177
4357
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3181,7 +4361,7 @@ Test clang-3.9 64bit_float_int16:
|
|
3181
4361
|
LD: clang-3.9
|
3182
4362
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1"
|
3183
4363
|
LDFLAGS: ''
|
3184
|
-
script: env;
|
4364
|
+
script: env; rake --verbose all test
|
3185
4365
|
Test clang-3.9 64bit_float_int16_utf8:
|
3186
4366
|
stage: test
|
3187
4367
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3191,7 +4371,7 @@ Test clang-3.9 64bit_float_int16_utf8:
|
|
3191
4371
|
LD: clang-3.9
|
3192
4372
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT16=1 -DMRB_UTF8_STRING=1"
|
3193
4373
|
LDFLAGS: ''
|
3194
|
-
script: env;
|
4374
|
+
script: env; rake --verbose all test
|
3195
4375
|
Test clang-3.9 64bit_float_int64:
|
3196
4376
|
stage: test
|
3197
4377
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
@@ -3199,10 +4379,30 @@ Test clang-3.9 64bit_float_int64:
|
|
3199
4379
|
CC: clang-3.9
|
3200
4380
|
CXX: clang++-3.9
|
3201
4381
|
LD: clang-3.9
|
3202
|
-
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1
|
4382
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1"
|
3203
4383
|
LDFLAGS: ''
|
3204
|
-
script: env;
|
4384
|
+
script: env; rake --verbose all test
|
3205
4385
|
Test clang-3.9 64bit_float_int64_utf8:
|
4386
|
+
stage: test
|
4387
|
+
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
4388
|
+
variables:
|
4389
|
+
CC: clang-3.9
|
4390
|
+
CXX: clang++-3.9
|
4391
|
+
LD: clang-3.9
|
4392
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_UTF8_STRING=1"
|
4393
|
+
LDFLAGS: ''
|
4394
|
+
script: env; rake --verbose all test
|
4395
|
+
Test clang-3.9 64bit_float_int64_word:
|
4396
|
+
stage: test
|
4397
|
+
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
4398
|
+
variables:
|
4399
|
+
CC: clang-3.9
|
4400
|
+
CXX: clang++-3.9
|
4401
|
+
LD: clang-3.9
|
4402
|
+
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1"
|
4403
|
+
LDFLAGS: ''
|
4404
|
+
script: env; rake --verbose all test
|
4405
|
+
Test clang-3.9 64bit_float_int64_word_utf8:
|
3206
4406
|
stage: test
|
3207
4407
|
image: registry.gitlab.com/dabroz/mruby:clang39_0.7
|
3208
4408
|
variables:
|
@@ -3211,4 +4411,4 @@ Test clang-3.9 64bit_float_int64_utf8:
|
|
3211
4411
|
LD: clang-3.9
|
3212
4412
|
CFLAGS: "-DMRB_USE_FLOAT=1 -DMRB_INT64=1 -DMRB_WORD_BOXING=1 -DMRB_UTF8_STRING=1"
|
3213
4413
|
LDFLAGS: ''
|
3214
|
-
script: env;
|
4414
|
+
script: env; rake --verbose all test
|