mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
7080f3ee3d
1. Extend test timeout (8 to 10) - macOS truffleruby 2. Refactor, shortened job descriptions for Web UI, etc
102 lines
2.5 KiB
YAML
102 lines
2.5 KiB
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: >-
|
|
${{ matrix.os }} ${{ matrix.ruby }}
|
|
env:
|
|
CI: true
|
|
TESTOPTS: -v
|
|
|
|
runs-on: ${{ matrix.os }}-latest
|
|
if: |
|
|
!(contains(github.event.pull_request.title, '[ci skip]')
|
|
|| contains(github.event.head_commit.message, '[ci skip]'))
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ ubuntu, macos, windows ]
|
|
ruby: [ 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, head, jruby, truffleruby-head ]
|
|
include:
|
|
- { os: windows , ruby: mingw }
|
|
exclude:
|
|
- { os: windows , ruby: head }
|
|
- { os: windows , ruby: jruby }
|
|
- { os: windows , ruby: truffleruby-head }
|
|
|
|
steps:
|
|
- name: repo checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: load ruby, ragel
|
|
uses: MSP-Greg/setup-ruby-pkgs@v1
|
|
with:
|
|
ruby-version: ${{ matrix.ruby }}
|
|
bundler: 1
|
|
apt-get: ragel
|
|
brew: ragel
|
|
mingw: _upgrade_ openssl ragel
|
|
|
|
- name: bundle install
|
|
shell: pwsh
|
|
run: |
|
|
# update RubyGems in Ruby 2.2, bundle install
|
|
if ('${{ matrix.ruby }}' -lt '2.3') {
|
|
gem update --system 2.7.10 --no-document
|
|
}
|
|
bundle install --jobs 4 --retry 3 --path=.bundle/puma
|
|
|
|
- name: compile
|
|
run: bundle exec rake compile
|
|
|
|
- name: rubocop
|
|
if: startsWith(matrix.ruby, '2.')
|
|
run: bundle exec rake rubocop
|
|
|
|
- name: test
|
|
timeout-minutes: 10
|
|
run: bundle exec rake test:all
|
|
|
|
allowedFailures:
|
|
name: >-
|
|
optional: ${{ matrix.os }} ${{ matrix.ruby }}
|
|
env:
|
|
CI: true
|
|
TESTOPTS: -v
|
|
|
|
runs-on: ${{ matrix.os }}-latest
|
|
if: |
|
|
!(contains(github.event.pull_request.title, '[ci skip]')
|
|
|| contains(github.event.head_commit.message, '[ci skip]'))
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- { os: ubuntu, ruby: jruby-head }
|
|
|
|
steps:
|
|
- name: repo checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: load ruby, ragel
|
|
uses: MSP-Greg/setup-ruby-pkgs@v1
|
|
with:
|
|
ruby-version: ${{ matrix.ruby }}
|
|
apt-get: ragel
|
|
brew: ragel
|
|
|
|
- name: bundle install
|
|
run: |
|
|
bundle install --jobs 4 --retry 3 --path=.bundle/puma
|
|
|
|
- name: compile
|
|
continue-on-error: true
|
|
run: bundle exec rake compile
|
|
|
|
- name: test
|
|
timeout-minutes: 10
|
|
continue-on-error: true
|
|
if: success()
|
|
run: bundle exec rake
|