build #2298
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "30 14 * * *" | |
jobs: | |
ruby-versions: | |
uses: ruby/actions/.github/workflows/ruby_versions.yml@master | |
with: | |
engine: cruby-truffleruby | |
min_version: 2.7 | |
irb: | |
needs: ruby-versions | |
name: rake test ${{ matrix.ruby }} ${{ matrix.with_latest_reline && '(latest reline)' || '' }} | |
strategy: | |
matrix: | |
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} | |
with_latest_reline: [true, false] | |
exclude: | |
- ruby: truffleruby | |
fail-fast: false | |
runs-on: ubuntu-latest | |
env: | |
WITH_LATEST_RELINE: ${{matrix.with_latest_reline}} | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Run tests | |
run: bundle exec rake test | |
- name: Run tests in isolation | |
run: bundle exec rake test_in_isolation | |
vterm-yamatanooroti: | |
needs: ruby-versions | |
name: >- | |
vterm-yamatanooroti ${{ matrix.ruby }} ${{ matrix.with_latest_reline && '(latest reline)' || '' }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} | |
with_latest_reline: [true, false] | |
exclude: | |
- ruby: truffleruby | |
- ruby: truffleruby-head | |
fail-fast: false | |
env: | |
WITH_LATEST_RELINE: ${{matrix.with_latest_reline}} | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install libvterm | |
run: | | |
sudo apt install -y libtool-bin | |
wget http://www.leonerd.org.uk/code/libvterm/libvterm-0.1.4.tar.gz | |
tar xvzf libvterm-0.1.4.tar.gz | |
cd libvterm-0.1.4 | |
sed -i -e 's/^PREFIX=.*$/PREFIX=\/usr/g' Makefile | |
make | |
sudo make install | |
- name: Install dependencies | |
run: | | |
gem install bundler --no-document | |
gem rdoc --all --ri --no-rdoc | |
WITH_VTERM=1 bundle install | |
- name: rake test_yamatanooroti | |
run: WITH_VTERM=1 bundle exec rake test_yamatanooroti |