From ec43599b3f37e164c727b2ac32a12640c08efdcd Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Thu, 2 Jan 2020 15:48:30 +0100 Subject: [PATCH] Remove direct workflow to lessen CI load * Also the action is becoming more flexible now. --- .github/workflows/direct.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/direct.yml diff --git a/.github/workflows/direct.yml b/.github/workflows/direct.yml deleted file mode 100644 index 16eb3fd..0000000 --- a/.github/workflows/direct.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Test manual setup -on: [push] -jobs: - test: - strategy: - fail-fast: false - matrix: - os: [ 'ubuntu-16.04', 'ubuntu-18.04', 'macos-latest' ] - ruby: [ 'ruby-2.6.5', 'ruby-2.7.0', 'truffleruby-19.3.0', 'jruby-9.2.9.0' ] - runs-on: ${{ matrix.os }} - steps: - - run: echo ::set-env name=HOME::$HOME - - run: mkdir ~/.rubies - - run: wget https://github.com/eregon/ruby-install-builder/releases/download/builds/${{ matrix.ruby }}-${{ matrix.os }}.tar.gz - working-directory: ${{ env.HOME }}/.rubies - - run: tar xf ${{ matrix.ruby }}-${{ matrix.os }}.tar.gz - working-directory: ${{ env.HOME }}/.rubies - - run: echo "::add-path::${{ env.HOME }}/.rubies/${{ matrix.ruby }}/bin" - - run: ruby -v - - run: ruby -ropen-uri -e 'puts open("https://rubygems.org/") { |f| f.read(2014) }'