aboutsummaryrefslogtreecommitdiffstats
path: root/.github
Commit message (Collapse)AuthorAgeFilesLines
* Remove BUNLDER_VERSION in Windows (#3859)MSP-Greg2020-12-071-1/+2
| | | [Bug #17372]
* Pass the flag as $TESTOPTSTakashi Kokubun2020-12-071-1/+1
| | | | | Fixing the failure of a4f292426b40f9d6c8f3d646e4b7c667313074f2 like https://github.com/ruby/ruby/runs/1513663542
* skip failing tests in test-all on mingwNARUSE, Yui2020-12-081-1/+1
| | | | https://bugs.ruby-lang.org/issues/17372
* Increase timeout for MJIT ActionsTakashi Kokubun2020-11-281-3/+3
| | | | | It's too short for --jit-wait https://github.com/ruby/ruby/runs/1466690076?check_suite_focus=true
* Removed canonicalization for mathnNobuyoshi Nakada2020-11-101-1/+0
|
* .github/workflows/baseruby.yml: add卜部昌平2020-11-041-0/+47
| | | | Translate a part of .travis.yml into a Github Actions workflow.
* Removed unused environment variableNobuyoshi Nakada2020-10-271-1/+0
|
* Tweaks for the ruby/spec workflowBenoit Daloze2020-10-241-5/+4
|
* .github/workflows/spec_guards.yml add卜部昌平2020-10-231-0/+40
| | | | Translate a part of .travis.yml into GitHub Actions workflow.
* Check dependencies on macOS tooNobuyoshi Nakada2020-10-211-1/+12
|
* .github: reduce copy&paste卜部昌平2020-10-217-70/+40
| | | | Found that we can set default working directory for github actions.
* Use %VCVARS%Nobuyoshi Nakada2020-10-131-3/+4
|
* Use $GITHUB_ENV instead of set-envKazuhiro NISHIYAMA2020-10-065-6/+6
| | | | https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
* Remove unused commit_infoKazuhiro NISHIYAMA2020-10-066-14/+0
|
* Remove outdated comment [ci skip]Kazuhiro NISHIYAMA2020-09-272-2/+0
|
* Add check_dependencies workflowKazuhiro NISHIYAMA2020-09-251-0/+57
|
* .github: try GitHub Container Registry卜部昌平2020-09-071-1/+1
| | | | | | It is natural for a CI running on GitHub to use GitHub's facility. See also https://github.blog/2020-09-01-introducing-github-container-registry/
* Increase timeout for GitHub Actions.Samuel Williams2020-09-062-2/+2
|
* add RUBY_DEBUG=ci envval for GH actionsKoichi Sasada2020-09-011-0/+1
| | | | RUBY_DEBUG=ci envval shows more information on rb_bug().
* Use the previous winflexbison3Nobuyoshi Nakada2020-09-011-1/+2
| | | | winflexbison3 v2.5.23.20200829 seems to install nothing.
* minitest is working fine with Ruby 3Hiroshi SHIBATA2020-09-012-2/+2
|
* xmlrpc has been removed from the bundled gemsHiroshi SHIBATA2020-09-012-2/+2
|
* Revert the workaround of minitest and hoeHiroshi SHIBATA2020-09-012-2/+2
| | | | | 86737c509cd49cfe4509a65d300d390da0f07be6 3e1aea461320094e634ab32ca0b13dd43b69d8b0
* Removed minitest and hoe because they didn't support Ruby 3 yetHiroshi SHIBATA2020-08-312-2/+2
|
* .github/workflows/compilers.yml: more compilers卜部昌平2020-08-231-5/+24
| | | | | | Added some cross compilers that we can run on GitHub Workflow runner environments. Because they are cross compilers we cannot run the generated binary. The added matrix are compile-only.
* .github/workflows/compilers.yml: clang-12卜部昌平2020-08-111-0/+1
| | | | LLVM made release/11.x branch. Its master is now version 12.
* Check if C-sources are US-ASCIINobuyoshi Nakada2020-08-101-0/+11
| | | | | Encoding of C-sources can not be determined, and non-ASCII code are often warned by localized compilers.
* Use zlib provided by vcpkg in mswin CI (#3397)Hiroshi SHIBATA2020-08-071-6/+1
| | | | | | | | | * Revert "mswin build - install src zlib files after checkout" This reverts commit b6175c9e4fe25b978252d8998fe791d65d998fc5. * Revert "mswin build - install src zlib files" This reverts commit bf758ef8b4e2895bf71a611a7ab2a4f236e260ea.
* mswin build - install src zlib files after checkoutNobuyoshi Nakada2020-08-011-5/+5
| | | | actions/checkout deletes the contents of the source directory.
* mswin build - install src zlib filesMSP-Greg2020-08-011-1/+6
|
* Remove obsolete rubygems fileNobuyoshi Nakada2020-08-011-0/+3
| | | | Fixes a weird error in CodeQL autobuild.
* Fixed a typoNobuyoshi Nakada2020-07-261-1/+1
|
* Add more timeouts to macos, mjit, ubuntu and windows workflows.Samuel Williams2020-07-204-0/+6
|
* Update actions/cache from v1 to v2Sora Morimoto2020-07-151-2/+2
| | | | Signed-off-by: Sora Morimoto <sora@morimoto.io>
* Remove --jit-min-calls for nowTakashi Kokubun2020-07-131-2/+2
| | | | --jit-min-calls=5 is too unstable
* Add --jit-min-calls=5 (#3313)Takashi Kokubun2020-07-121-4/+4
| | | | | * RUN_OPTS needs to be specified for overriding it * Add --jit-min-calls=5
* RUBY_DEBUG_LOG: Logging debug information mechanism (#3279)Koichi Sasada2020-07-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * RUBY_DEBUG_LOG: Logging debug information mechanism This feature provides a mechanism to store logging information to a file, stderr or memory space with simple macros. The following information will be stored. * (1) __FILE__, __LINE__ in C * (2) __FILE__, __LINE__ in Ruby * (3) __func__ in C (message title) * (4) given string with sprintf format * (5) Thread number (if multiple threads are running) This feature is enabled only USE_RUBY_DEBUG_LOG is enabled. Release version should not enable it. Running with the `RUBY_DEBUG_LOG` environment variable enables this feature. # logging into a file RUBY_DEBUG_LOG=/path/to/file STDERR # logging into STDERR RUBY_DEBUG_LOG=stderr # logging into memory space (check with a debugger) # It will help if the timing is important. RUBY_DEBUG_LOG=mem RUBY_DEBUG_LOG_FILTER environment variable can specify the fileter string. If "(3) __func__ in C (message title)" contains the specified string, the infomation will be stored (example: RUBY_DEBUG_LOG_FILTER=str will enable only on str related information). In a MRI source code, you can use the following macros: * RUBY_DEBUG_LOG(fmt, ...): Above (1) to (4) will be logged. * RUBY_DEBUG_LOG2(file, line, fmt, ...): Same as RUBY_DEBUG_LOG(), but (1) will be replaced with given file, line.
* Ignore conftest.c under the ext directories for CodeQL analysisHiroshi SHIBATA2020-07-032-0/+5
|
* Include workflow name in a notification of CompilationsTakashi Kokubun2020-06-231-1/+1
|
* Update without touch-unicode-filesNobuyoshi Nakada2020-06-165-17/+4
|
* Just update sources in CI without fetchingNobuyoshi Nakada2020-06-166-8/+29
| | | | | Also install external libraries only, extract-gems does not work unless base ruby is available.
* Add ubuntu-20.04 and rename to ubuntu-18.04 from ubuntu-latestKazuhiro NISHIYAMA2020-06-141-1/+1
|
* Reduced job number to run tests on MinGWNobuyoshi Nakada2020-06-101-3/+3
| | | | It seems too heavy as fails more often than before.
* Added CodeQL scanning by GitHub (#3196)Hiroshi SHIBATA2020-06-091-0/+39
| | | | Added configuration for CodeQL scanning by GitHub
* .github: add test for -DMJIT_FORCE_ENABLE卜部昌平2020-06-091-0/+2
|
* Run tests in more parallelNobuyoshi Nakada2020-06-061-3/+3
|
* Try test-bundler-parallel in GitHub ActionsNobuyoshi Nakada2020-06-052-3/+3
|
* No GITPULLOPTIONS by defaultNobuyoshi Nakada2020-06-046-6/+6
| | | | | To honor the environment variable, keep GITPULLOPTIONS unset by default, and appended the option to VCSUP.
* No one reads the detached head adviceNobuyoshi Nakada2020-06-045-0/+13
|
* Fetch no tagsNobuyoshi Nakada2020-06-046-0/+9
| | | | Fetched tags by `make up` are not used, in CI environments.