HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/rvm/.github/workflows/specs.yml
name: CI
on: [push, pull_request]
jobs:
  tests:
    strategy:
      fail-fast: false
      matrix:
        os:
          - ubuntu-latest
          - macos-latest
    runs-on: ${{ matrix.os }}
    env:
      TERM: ansi
    steps:
      - uses: actions/checkout@v2
      - run: ./install
      - run: source ~/.rvm/scripts/rvm && rvm use 2.4.0 --install --default && gem install tf -v '>=0.4.1'
      - name: tests/fast/*
        run: source ~/.rvm/scripts/rvm && tf --text tests/fast/*
      - name: named_ruby_and_gemsets_comment_test
        # works on local, but fails in CI, needs to be investigated
        if: ${{ !contains(matrix.os, 'macos') }}
        run: source ~/.rvm/scripts/rvm && tf --text tests/long/named_ruby_and_gemsets_comment_test.sh
      - name: ruby_prepare_mount_comment_test
        # https://github.com/rvm/rvm/issues/4937
        if: ${{ !contains(matrix.os, 'macos') }}
        run: source ~/.rvm/scripts/rvm && tf --text tests/long/ruby_prepare_mount_comment_test.sh
      - name: truffleruby_comment_test
        # works on local, but fails in CI, needs to be investigated
        if: ${{ !contains(matrix.os, 'macos') }}
        run: source ~/.rvm/scripts/rvm && tf --text tests/long/truffleruby_comment_test.sh