2019-11-13 00:48:05 -05:00
name : Ubuntu
2020-02-25 22:52:07 -05:00
on : [ push, pull_request]
2019-08-11 06:12:38 -04:00
jobs :
2019-11-12 23:44:00 -05:00
make :
2019-08-11 06:12:38 -04:00
strategy :
matrix :
2020-06-05 08:39:45 -04:00
test_task : [ "check" , "test-bundler-parallel" , "test-bundled-gems" , "test-all TESTS=--repeat-count=2" , "leaked-globals" ]
2020-12-10 03:41:39 -05:00
os :
- ubuntu-20.04
# - ubuntu-18.04
# - ubuntu-16.04
2020-05-26 10:04:10 -04:00
debug : [ "" , "-DRUBY_DEBUG" ]
2019-11-12 23:38:05 -05:00
exclude :
2020-06-05 08:39:45 -04:00
- test_task : test-bundler-parallel
2019-11-12 23:44:00 -05:00
os : ubuntu-16.04
- test_task : test-bundled-gems
os : ubuntu-16.04
2020-02-12 21:46:16 -05:00
- test_task : "test-all TESTS=--repeat-count=2"
os : ubuntu-16.04
2020-02-25 23:17:08 -05:00
- test_task : leaked-globals
os : ubuntu-16.04
2020-05-26 10:04:10 -04: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-16 20:43:05 -04:00
fail-fast : false
2020-06-03 19:22:50 -04:00
env :
2020-06-03 21:26:40 -04:00
GITPULLOPTIONS : --no -tags origin ${{github.ref}}
2020-08-31 17:14:07 -04:00
RUBY_DEBUG : ci
2019-10-26 20:59:56 -04:00
runs-on : ${{ matrix.os }}
2019-10-09 04:46:05 -04:00
if : "!contains(github.event.head_commit.message, '[ci skip]')"
2019-08-11 06:12:38 -04:00
steps :
2020-10-19 02:32:39 -04:00
- run : mkdir build
working-directory :
2019-08-11 06:12:38 -04:00
- name : Install libraries
run : |
set -x
2019-12-13 04:04:21 -05:00
sudo apt-get update -q || :
2019-10-26 20:59:56 -04: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-03 19:33:04 -04:00
- name : git config
run : |
git config --global advice.detachedHead 0
2020-05-11 05:37:08 -04:00
- uses : actions/checkout@v2
with :
path : src
2019-08-11 18:07:54 -04:00
- name : Fixed world writable dirs
run : |
2020-04-22 12:40:01 -04:00
chmod -v go-w $HOME $HOME/.config
2019-08-11 18:07:54 -04:00
sudo chmod -R go-w /usr/share
2020-04-22 12:40:01 -04:00
sudo bash -c 'IFS=:; for d in '"$PATH"'; do chmod -v go-w $d; done' || :
2019-08-27 20:45:31 -04:00
- name : Set ENV
run : |
2020-10-05 21:28:15 -04:00
echo "JOBS=-j$((1 + $(nproc --all)))" >> $GITHUB_ENV
2020-04-04 22:53:07 -04:00
- run : autoconf
2020-02-25 23:12:46 -05:00
working-directory : src
2020-04-24 09:43:48 -04:00
- name : Run configure
2020-05-26 10:04:10 -04:00
run : ../src/configure -C --disable-install-doc cppflags=${{ matrix.debug }}
2020-06-15 23:29:02 -04:00
- run : make $JOBS incs
2020-02-25 23:12:46 -05:00
- run : make $JOBS
2020-03-13 05:40:00 -04:00
- run : make prepare-gems
2019-11-19 01:13:35 -05:00
if : matrix.test_task == 'check'
2019-12-10 04:31:01 -05:00
- name : Create dummy files in build dir
run : |
2019-12-10 07:44:34 -05: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)")}'
2019-12-10 23:08:21 -05:00
if : matrix.test_task == 'check'
2020-02-25 23:12:46 -05:00
- run : make $JOBS -s ${{ matrix.test_task }}
2020-07-18 06:02:07 -04:00
timeout-minutes : 30
2019-08-16 22:36:12 -04:00
env :
2019-09-03 22:50:37 -04:00
RUBY_TESTOPTS : "-q --tty=no"
2020-08-31 21:01:48 -04:00
TEST_BUNDLED_GEMS_ALLOW_FAILURES : ""
2020-03-07 03:34:41 -05:00
- uses : k0kubun/action-slack@v2.0.0
with :
payload : |
{
"ci": "GitHub Actions" ,
2020-05-26 10:20:36 -04:00
"env": "${{ matrix.os }} / ${{ matrix.test_task }}${{ matrix.debug }}" ,
2020-03-07 03:34:41 -05:00
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" ,
2020-03-10 01:31:50 -04:00
"commit": "${{ github.sha }}" ,
"branch": "${{ github.ref }}" .split('/').reverse()[0]
2020-03-07 03:34:41 -05:00
}
env :
2020-03-10 01:31:50 -04:00
SLACK_WEBHOOK_URL : ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
2020-03-07 03:34:41 -05:00
if : failure() && github.event_name == 'push'
2020-10-19 02:32:39 -04:00
defaults :
run :
working-directory : build