π Upgrade docs #149
This file contains hidden or 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: Truffle | |
permissions: | |
contents: read | |
env: | |
K_SOUP_COV_DO: false | |
on: | |
push: | |
branches: | |
- 'main' | |
- '*-stable' | |
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 ${{ matrix.ruby }} ${{ matrix.appraisal }}${{ matrix.name_extra || '' }} | |
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')" | |
runs-on: ubuntu-22.04 | |
continue-on-error: ${{ matrix.experimental || endsWith(matrix.ruby, 'head') }} | |
env: # $BUNDLE_GEMFILE must be set at job level, so it is set for all steps | |
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}.gemfile | |
strategy: | |
matrix: | |
include: | |
# NOTE: truffleruby does not support upgrading rubygems. | |
# truffleruby-23.1 (targets Ruby 3.2 compatibility) | |
- ruby: "truffleruby-23.1" | |
appraisal: "ruby-3-2" | |
exec_cmd: "rake test" | |
gemfile: "Appraisal.root" | |
rubygems: default | |
bundler: default | |
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 | |
# Raw `bundle` will use the BUNDLE_GEMFILE set to matrix.gemfile (i.e. Appraisal.root) | |
# We need to do this first to get appraisal installed. | |
# NOTE: This does not use the primary Gemfile at all. | |
- name: Install Root Appraisal | |
run: bundle | |
- name: "[Attempt 1] Install Root Appraisal" | |
id: bundleAttempt1 | |
run: bundle | |
# Continue to the next step on failure | |
continue-on-error: true | |
# Effectively an automatic retry of the previous step. | |
- name: "[Attempt 2] Install Root Appraisal" | |
id: bundleAttempt2 | |
# If bundleAttempt1 failed, try again here; Otherwise skip. | |
if: steps.bundleAttempt1.outcome == 'failure' | |
run: bundle | |
- name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}" | |
id: bundleAppraisalAttempt1 | |
run: bundle exec appraisal ${{ matrix.appraisal }} bundle | |
# Continue to the next step on failure | |
continue-on-error: true | |
# Effectively an automatic retry of the previous step. | |
- name: "[Attempt 2] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}" | |
id: bundleAppraisalAttempt2 | |
# If bundleAttempt1 failed, try again here; Otherwise skip. | |
if: steps.bundleAppraisalAttempt1.outcome == 'failure' | |
run: bundle exec appraisal ${{ matrix.appraisal }} bundle | |
- name: Tests for ${{ matrix.ruby }} via ${{ matrix.exec_cmd }} | |
run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec ${{ matrix.exec_cmd }} |