2019-11-12 21:48:05 -08:00
name : Ubuntu
2020-02-26 12:52:07 +09:00
on : [ push, pull_request]
2019-08-11 19:12:38 +09:00
jobs :
2019-11-12 20:44:00 -08:00
make :
2019-08-11 19:12:38 +09:00
strategy :
matrix :
2021-06-30 14:11:12 +12:00
test_task : [ "check" , "test-bundler-parallel" , "test-bundled-gems" ]
2020-12-10 17:41:39 +09:00
os :
- ubuntu-20.04
# - ubuntu-18.04
2021-07-08 17:57:11 +09:00
configure : [ "" , "cppflags=-DRUBY_DEBUG" ]
2021-06-30 14:11:12 +12:00
include :
2020-05-26 23:04:10 +09:00
- test_task : "test-all TESTS=--repeat-count=2"
2021-06-30 14:11:12 +12:00
os : ubuntu-20.04
configure : ""
2019-08-17 09:43:05 +09:00
fail-fast : false
2020-06-04 08:22:50 +09:00
env :
2020-06-04 10:26:40 +09:00
GITPULLOPTIONS : --no -tags origin ${{github.ref}}
2020-09-01 06:14:07 +09:00
RUBY_DEBUG : ci
2019-10-27 09:59:56 +09:00
runs-on : ${{ matrix.os }}
2019-08-11 19:12:38 +09:00
steps :
2020-10-19 15:32:39 +09:00
- run : mkdir build
working-directory :
2019-08-11 19:12:38 +09:00
- name : Install libraries
run : |
set -x
2019-12-13 18:04:21 +09:00
sudo apt-get update -q || :
2021-06-29 10:13:12 -07:00
sudo apt-get install --no-install-recommends -q -y build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev bison autoconf ruby
2020-06-04 08:33:04 +09:00
- name : git config
run : |
git config --global advice.detachedHead 0
2021-03-08 12:42:48 +09:00
git config --global init.defaultBranch garbage
2020-05-11 18:37:08 +09:00
- uses : actions/checkout@v2
with :
path : src
2019-08-12 07:07:54 +09:00
- name : Fixed world writable dirs
run : |
2020-04-23 01:40:01 +09:00
chmod -v go-w $HOME $HOME/.config
2019-08-12 07:07:54 +09:00
sudo chmod -R go-w /usr/share
2020-04-23 01:40:01 +09:00
sudo bash -c 'IFS=:; for d in '"$PATH"'; do chmod -v go-w $d; done' || :
2019-08-28 09:45:31 +09:00
- name : Set ENV
run : |
2020-10-06 10:28:15 +09:00
echo "JOBS=-j$((1 + $(nproc --all)))" >> $GITHUB_ENV
2021-04-08 20:36:58 +09:00
- run : ./autogen.sh
2020-02-26 13:12:46 +09:00
working-directory : src
2020-04-24 22:43:48 +09:00
- name : Run configure
2021-06-30 14:11:12 +12:00
run : ../src/configure -C --disable-install-doc ${{ matrix.configure }}
2020-06-16 12:29:02 +09:00
- run : make $JOBS incs
2020-02-26 13:12:46 +09:00
- run : make $JOBS
2020-12-25 23:08:34 +09:00
- run : make leaked-globals
2021-08-02 11:39:38 +09:00
if : ${{ matrix.test_task == 'check' }}
2020-03-13 10:40:00 +01:00
- run : make prepare-gems
2021-08-02 11:39:38 +09:00
if : ${{ matrix.test_task == 'check' }}
2019-12-10 18:31:01 +09:00
- name : Create dummy files in build dir
run : |
2019-12-10 21:44:34 +09:00
./miniruby -e '(("a".."z").to_a+("A".."Z").to_a+("0".."9").to_a+%w[foo bar test zzz]).each{|basename|File.write("#{basename}.rb", "raise %(do not load #{basename}.rb)")}'
2021-08-02 11:39:38 +09:00
if : ${{ matrix.test_task == 'check' }}
2020-02-26 13:12:46 +09:00
- run : make $JOBS -s ${{ matrix.test_task }}
2020-07-18 22:02:07 +12:00
timeout-minutes : 30
2019-08-17 11:36:12 +09:00
env :
2019-09-04 11:50:37 +09:00
RUBY_TESTOPTS : "-q --tty=no"
2021-08-15 11:59:05 +09:00
TEST_BUNDLED_GEMS_ALLOW_FAILURES : ""
2020-03-07 00:34:41 -08:00
- uses : k0kubun/action-slack@v2.0.0
with :
payload : |
{
"ci": "GitHub Actions" ,
2021-06-30 14:11:12 +12:00
"env": "${{ matrix.os }} / ${{ matrix.test_task }}${{ matrix.configure }}" ,
2020-03-07 00:34:41 -08:00
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" ,
2020-03-09 22:31:50 -07:00
"commit": "${{ github.sha }}" ,
"branch": "${{ github.ref }}" .split('/').reverse()[0]
2020-03-07 00:34:41 -08:00
}
env :
2020-03-09 22:31:50 -07:00
SLACK_WEBHOOK_URL : ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
2021-08-02 11:39:38 +09:00
if : ${{ failure() && github.event_name == 'push' }}
2020-10-19 15:32:39 +09:00
defaults :
run :
working-directory : build