summaryrefslogtreecommitdiff
path: root/.github/workflows/mjit.yml
AgeCommit message (Collapse)Author
2020-12-31merge revision(s) 45fd4436ee146f95487b1575c5a2df5cf77f4717:nagachika
Use $GITHUB_ENV instead of set-env https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
2020-01-30Add branch option to checkout on pushKazuhiro NISHIYAMA
2020-01-30Slightly change the job wording [ci skip]Takashi Kokubun
mame-san said it's weird
2020-01-30Support running Actions on a forkTakashi Kokubun
Since 8c9450e7b875db846b19cc631af0d7fee66db5c6, we increased the chance to run GitHub Actions on a fork, as we usually use a topic branch instead of master when filing a pull request. This patch makes it possible to reuse the same GitHub Actions config on a fork repository.
2020-01-30Directly refer to GitHub eventsTakashi Kokubun
instead of unnecessarily defining env vars
2020-01-30Remove code to prevent double build on trunkTakashi Kokubun
trunk branch was deleted.
2020-01-30More consistent failure notificationsTakashi Kokubun
The format is the same as Travis / AppVeyor now.
2020-01-30Make Slack notifications consistentTakashi Kokubun
2020-01-30Make all Actions job names consistentTakashi Kokubun
like "{platform} / make ({make target}, ...)"
2019-12-13Ignore error of `apt-get update` in MJIT workflow tooKazuhiro NISHIYAMA
2019-12-11Try to use `set-output`Kazuhiro NISHIYAMA
because commit info are not necessary in env.
2019-11-22Stop using undefined matrix.os for macOSTakashi Kokubun
and use github.workflow instead. Applied a similar change to MJIT too.
2019-11-13Make GitHub Actions notification more like TravisTakashi Kokubun
Build's sequential number is a link in Travis, and also YYYY-MM-DD-XX is a little hard to parse.
2019-11-13Use shallow-since instead of depthKazuhiro NISHIYAMA
commit number of today requires log since 0:00 UTC. So commits of 24 hours are enough. https://www.git-scm.com/docs/git-clone#Documentation/git-clone.txt---depthltdepthgt > Implies --single-branch unless --no-single-branch is given to fetch the histories near the tips of all branches. So I add `--single-branch` too. Notes: Merged: https://github.com/ruby/ruby/pull/2680
2019-11-13Add commit number of today to notification of mjit CI tooKazuhiro NISHIYAMA
Notes: Merged: https://github.com/ruby/ruby/pull/2679
2019-11-12Fix MJIT test's Slack notificationTakashi Kokubun
2019-11-12Migrate Wercker MJIT tests to Actions (#2676)Takashi Kokubun
* Migrate Wercker MJIT tests to Actions * Support pull request for testing * Capitalize other jobs too * Make it a command name for consistency [ci skip] * Remove wercker.yml * Add --jit-verbose=2 for debugging * Install MJIT headers * Separate install for sudo * Trigger build Notes: Merged-By: k0kubun <takashikkbn@gmail.com>