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 :
2020-06-05 21:39:45 +09:00
test_task : [ "check" , "test-bundler-parallel" , "test-bundled-gems" , "test-all TESTS=--repeat-count=2" , "leaked-globals" ]
2020-06-14 11:15:23 +09:00
os : [ ubuntu-20.04, ubuntu-18.04, ubuntu-16.04]
2020-05-26 23:04:10 +09:00
debug : [ "" , "-DRUBY_DEBUG" ]
2019-11-12 20:38:05 -08:00
exclude :
2020-06-05 21:39:45 +09:00
- test_task : test-bundler-parallel
2019-11-12 20:44:00 -08:00
os : ubuntu-16.04
- test_task : test-bundled-gems
os : ubuntu-16.04
2020-02-13 11:46:16 +09:00
- test_task : "test-all TESTS=--repeat-count=2"
os : ubuntu-16.04
2020-02-26 13:17:08 +09:00
- test_task : leaked-globals
os : ubuntu-16.04
2020-05-26 23:04:10 +09:00
- os : ubuntu-16.04
debug : -DRUBY_DEBUG
- test_task : "test-all TESTS=--repeat-count=2"
debug : -DRUBY_DEBUG
- test_task : leaked-globals
debug : -DRUBY_DEBUG
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}}
2019-10-27 09:59:56 +09:00
runs-on : ${{ matrix.os }}
2019-10-09 17:46:05 +09:00
if : "!contains(github.event.head_commit.message, '[ci skip]')"
2019-08-11 19:12:38 +09:00
steps :
- name : Install libraries
run : |
set -x
2019-12-13 18:04:21 +09:00
sudo apt-get update -q || :
2019-10-27 09:59:56 +09:00
sudo apt-get install --no-install-recommends -q -y build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev bison autoconf ruby
2020-06-04 08:33:04 +09:00
- name : git config
run : |
git config --global advice.detachedHead 0
2020-05-11 18:37:08 +09:00
- uses : actions/checkout@v2
with :
path : src
2019-11-13 13:22:46 +09:00
- run : ./src/tool/actions-commit-info.sh
2019-12-11 14:01:23 +09:00
id : commit_info
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 : |
2019-11-13 13:13:52 +09:00
echo '::set-env name=JOBS::'-j$((1 + $(nproc --all)))
2020-04-05 11:53:07 +09:00
- run : autoconf
2020-02-26 13:12:46 +09:00
working-directory : src
- run : mkdir build
2020-04-24 22:43:48 +09:00
- name : Run configure
2020-05-26 23:04:10 +09:00
run : ../src/configure -C --disable-install-doc cppflags=${{ matrix.debug }}
2020-02-26 13:12:46 +09:00
working-directory : build
2020-06-16 12:29:02 +09:00
- run : make $JOBS incs
2020-06-16 11:44:31 +09:00
working-directory : build
2020-02-26 13:12:46 +09:00
- run : make $JOBS
working-directory : build
2020-03-13 10:40:00 +01:00
- run : make prepare-gems
2020-02-26 13:12:46 +09:00
working-directory : build
2019-11-19 15:13:35 +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)")}'
2020-02-26 13:12:46 +09:00
working-directory : build
2019-12-11 13:08:21 +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
2020-02-26 13:12:46 +09:00
working-directory : build
2019-08-17 11:36:12 +09:00
env :
2019-09-04 11:50:37 +09:00
RUBY_TESTOPTS : "-q --tty=no"
2019-12-30 23:09:24 -08:00
# Remove minitest from TEST_BUNDLED_GEMS_ALLOW_FAILURES if https://github.com/seattlerb/minitest/pull/798 is resolved
2020-03-24 15:36:53 +09:00
TEST_BUNDLED_GEMS_ALLOW_FAILURES : "minitest,xmlrpc"
2020-03-07 00:34:41 -08:00
- uses : k0kubun/action-slack@v2.0.0
with :
payload : |
{
"ci": "GitHub Actions" ,
2020-05-26 23:20:36 +09:00
"env": "${{ matrix.os }} / ${{ matrix.test_task }}${{ matrix.debug }}" ,
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
2020-03-07 00:34:41 -08:00
if : failure() && github.event_name == 'push'