aboutsummaryrefslogtreecommitdiff
path: root/projects/mruby
AgeCommit message (Collapse)Author
2021-02-03Update build.shAbhishek Arya
2021-01-21Fix building mruby fails randomly (#4941)KOBAYASHI Shuji
Building mruby is done with `make clean all -j$(nproc)`, but build fails randomly because `clean` and `all` run in parallel, and `clean` may be executed after `all` starts. Therefore, change it as follows. * Remove `clean` because it seems to be unneeded in the first place. * Use `rake` command because mruby uses Rake for builds (`Makefile` is a limited wrapper for calling `rake`). * Use `-m` option to run builds in parallel. * Remove `-j` option because build time seems to be almost the same even if `-j` option is specified.
2020-12-10Populate a bunch of main_repo values. (#4815)Oliver Chang
Also enforce this for future integrations.
2020-11-04mruby: Fix build (#4583)Bhargava Shastry
2020-06-29Fix build due to missing liblzma-devAbhishek Arya
2020-03-10[presubmit] Enforce language attribute in project.yaml to be always set. (#3477)Max Moroz
* [presubmit] Enforce language attribute in projectt.yaml to be always set. * Update documentation, better presubmit check, new project template. * add docstring to templates.py * Add example values in the project.yaml template and remove python value for now * Add "project: c++" to 256 projects * format * Add labels and selective_unpack sections to the presubmit check * fix incorrect auto_ccs format in three projects * fix nss emails after rebase
2019-11-03mruby: Move LPM build to dockerfile (#3000)Bhargava Shastry
2019-05-20[mruby] Update Dockerfile and build scripts for proto fuzzer (#2432)Bhargava Shastry
2019-05-15[mruby] Update primary email (#2425)Bhargava Shastry
2019-05-13[mruby] Add mruby compile fuzzer (#2380)Bhargava Shastry