2019-11-13 00:48:05 -05:00
name : Ubuntu
2021-10-28 11:02:07 -04:00
on :
push :
paths-ignore :
- 'doc/**'
- '**.md'
- '**.rdoc'
pull_request :
paths-ignore :
- 'doc/**'
- '**.md'
- '**.rdoc'
2021-11-18 08:21:05 -05:00
concurrency :
2021-11-21 05:17:27 -05:00
group : ${{ github.workflow }} / ${{ startsWith(github.event_name, 'pull') && github.ref_name || github.sha }}
cancel-in-progress : ${{ startsWith(github.event_name, 'pull') }}
2021-11-18 08:21:05 -05:00
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 :
2021-06-29 22:11:12 -04:00
test_task : [ "check" , "test-bundler-parallel" , "test-bundled-gems" ]
2020-12-10 03:41:39 -05:00
os :
- ubuntu-20.04
# - ubuntu-18.04
2021-07-08 04:57:11 -04:00
configure : [ "" , "cppflags=-DRUBY_DEBUG" ]
2021-06-29 22:11:12 -04:00
include :
2021-11-07 18:58:09 -05:00
- test_task : "check"
configure : "--host=i686-$OSTYPE"
2022-01-15 07:33:14 -05:00
- test_task : "check"
configure : "--enable-shared --enable-load-relative"
2022-01-16 02:01:57 -05:00
skipped_tests : "TestGem#test_.*_from_binstubs.*"
continue-on-skipped_tests : true
2020-05-26 10:04:10 -04:00
- test_task : "test-all TESTS=--repeat-count=2"
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
2022-01-15 07:33:14 -05:00
runs-on : ${{ matrix.os || 'ubuntu-20.04' }}
2021-12-17 22:31:43 -05:00
if : ${{ !startsWith(github.event.head_commit.message, '[DOC]') && !contains(github.event.pull_request.labels.*.name, 'Documentation') }}
2019-08-11 06:12:38 -04:00
steps :
2020-10-19 02:32:39 -04:00
- run : mkdir build
working-directory :
2021-11-07 18:58:09 -05:00
- name : Set ENV
env :
configure : ${{matrix.configure}}
run : |
echo "GNUMAKEFLAGS=-j$((1 + $(nproc --all)))" >> $GITHUB_ENV
arch=`echo " $configure" | sed '/.* --host=/!d;s///;s/[- ].*//'`
echo "SETARCH=${arch:+setarch $arch}" >> $GITHUB_ENV
2019-08-11 06:12:38 -04:00
- name : Install libraries
run : |
set -x
2021-11-07 18:58:09 -05:00
arch="${SETARCH##* }"
arch=${arch:+:${arch/i[3-6]86/i386}}
${arch:+sudo dpkg --add-architecture ${arch#:}}
2019-12-13 04:04:21 -05:00
sudo apt-get update -q || :
2021-11-07 18:58:09 -05:00
sudo apt-get install --no-install-recommends -q -y \
${arch:+cross}build-essential${arch/:/-} \
libssl-dev${arch} libyaml-dev${arch} libreadline6-dev${arch} \
zlib1g-dev${arch} libncurses5-dev${arch} libffi-dev${arch} \
2021-11-25 05:13:36 -05:00
bison autoconf ruby
sudo apt-get install -q -y pkg-config${arch} || :
2020-06-03 19:33:04 -04:00
- name : git config
run : |
git config --global advice.detachedHead 0
2021-03-07 22:42:48 -05:00
git config --global init.defaultBranch garbage
2022-03-24 07:38:59 -04:00
- uses : actions/checkout@v3
2020-05-11 05:37:08 -04:00
with :
path : src
2022-03-24 07:32:46 -04:00
- uses : actions/cache@v3
2021-12-02 08:21:20 -05:00
with :
path : src/.downloaded-cache
key : downloaded-cache
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' || :
2021-04-08 07:36:58 -04:00
- run : ./autogen.sh
2020-02-25 23:12:46 -05:00
working-directory : src
2020-04-24 09:43:48 -04:00
- name : Run configure
2021-11-07 18:58:09 -05:00
env :
arch : ${{matrix.arch}}
run : >-
$SETARCH ../src/configure -C --disable-install-doc ${{ matrix.configure }}
2021-11-10 03:06:34 -05:00
${arch:+--target=$arch-$OSTYPE}
2021-11-07 18:58:09 -05:00
- run : $SETARCH make incs
- run : $SETARCH make
- run : $SETARCH make leaked-globals
2021-10-15 13:30:01 -04:00
if : ${{ matrix.test_task == 'check' }}
2021-11-07 18:58:09 -05:00
- run : $SETARCH make prepare-gems
2021-08-01 22:39:38 -04:00
if : ${{ matrix.test_task == 'check' }}
2019-12-10 04:31:01 -05:00
- name : Create dummy files in build dir
run : |
2021-11-07 18:58:09 -05:00
$SETARCH ./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-01 22:39:38 -04:00
if : ${{ matrix.test_task == 'check' }}
2021-11-08 04:05:15 -05:00
- name : make ${{ matrix.test_task }}
run : |
2022-01-16 01:20:03 -05:00
$SETARCH make -s ${{ matrix.test_task }} ${TESTS:+TESTS=`echo "$TESTS" | sed 's| |$$/ -n!/|g;s|^|-n!/|;s|$|$$/|'`}
2021-10-28 21:31:03 -04:00
timeout-minutes : 40
2019-08-16 22:36:12 -04:00
env :
2019-09-03 22:50:37 -04:00
RUBY_TESTOPTS : "-q --tty=no"
2021-11-25 05:12:45 -05:00
TESTS : ${{ matrix.test_task == 'check' && matrix.skipped_tests || '' }}
2021-12-28 04:18:40 -05:00
TEST_BUNDLED_GEMS_ALLOW_FAILURES : ""
2022-01-01 11:25:33 -05:00
PRECHECK_BUNDLED_GEMS : "no"
2021-11-25 05:12:45 -05:00
- name : make skipped tests
run : |
2022-01-16 01:20:03 -05:00
$SETARCH make -s test-all TESTS=`echo "$TESTS" | sed 's| |$$/ -n/|g;s|^|-n/|;s|$|$$/|'`
2021-11-25 05:12:45 -05:00
env :
GNUMAKEFLAGS : ""
RUBY_TESTOPTS : "-v --tty=no"
TESTS : ${{ matrix.skipped_tests }}
if : ${{ matrix.test_task == 'check' && matrix.skipped_tests != '' }}
2022-01-16 02:01:26 -05:00
continue-on-error : ${{ matrix.continue-on-skipped_tests || false }}
2020-03-07 03:34:41 -05:00
- uses : k0kubun/action-slack@v2.0.0
with :
payload : |
{
"ci": "GitHub Actions" ,
2021-06-29 22:11:12 -04:00
"env": "${{ matrix.os }} / ${{ matrix.test_task }}${{ matrix.configure }}" ,
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
2021-08-01 22:39:38 -04:00
if : ${{ failure() && github.event_name == 'push' }}
2020-10-19 02:32:39 -04:00
defaults :
run :
working-directory : build