๐๏ธ New year, new cert #104
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: Rails 3 - 4.1 on EOL Ruby 2.3 | |
on: | |
push: | |
branches: | |
- 'main' | |
- '*-stable' | |
- '*-dev' | |
tags: | |
- '!*' # Do not execute on tags | |
pull_request: | |
branches: | |
- '*' | |
# Allow manually triggering the workflow. | |
workflow_dispatch: | |
# Cancels all previous workflow runs for the same branch that have not yet completed. | |
concurrency: | |
# The concurrency group contains the workflow name and the branch name. | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Specs - Ruby ${{ matrix.ruby }} & Rails ${{ matrix.rails }} ${{ matrix.name_extra || '' }} | |
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')" | |
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps | |
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile | |
# rspec-rails uses RAILS_VERSION internally | |
RAILS_VERSION: "~> ${{ matrix.rails }}" | |
# Our spec suite (not runtime code) uses RAILS_MAJOR_MINOR internally | |
RAILS_MAJOR_MINOR: ${{ matrix.rails }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- ruby: "2.3" | |
appraisal: "rails-4-1" | |
bundler: '1.17.3' | |
gemfile: vanilla | |
rails: "4.1" | |
- ruby: "2.3" | |
appraisal: "rails-4-0" | |
bundler: '1.17.3' | |
gemfile: vanilla | |
rails: "4.0" | |
- ruby: "2.3" | |
appraisal: "rails-3-2" | |
bundler: '1.17.3' | |
gemfile: vanilla | |
rails: "3.2" | |
- ruby: "2.3" | |
appraisal: "rails-3-1" | |
bundler: '1.17.3' | |
gemfile: vanilla | |
rails: "3.1" | |
- ruby: "2.3" | |
appraisal: "rails-3-0" | |
bundler: '1.17.3' | |
gemfile: vanilla | |
rails: "3.0" | |
runs-on: ubuntu-20.04 | |
continue-on-error: ${{ matrix.experimental || endsWith(matrix.ruby, 'head') }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Ruby & RubyGems | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
rubygems: ${{ matrix.rubygems }} | |
bundler: ${{ matrix.bundler }} | |
bundler-cache: false | |
# This will use the BUNDLE_GEMFILE set to matrix.gemfile (i.e. vanilla) | |
# We need to do this first to get appraisal installed. | |
# NOTE: This does not use the root Gemfile at all. | |
- name: Bundle for Appraisal ${{ matrix.appraisal }} (Rails v${{ matrix.rails}}) | |
run: bundle _1.17.3_ install | |
- name: Install Appraisal ${{ matrix.appraisal }} (Rails v${{ matrix.rails}}) dependencies | |
run: bundle _1.17.3_ exec appraisal ${{ matrix.appraisal }} bundle _1.17.3_ install | |
- name: Run tests ${{ matrix.appraisal }} (Rails v${{ matrix.rails}}) | |
run: bundle _1.17.3_ exec appraisal ${{ matrix.appraisal }} bundle _1.17.3_ exec rake test |