summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-09-26 19:22:30 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-09-26 19:22:30 +0900
commitc8f71686533cf068ad2f7a2e9fbb95a5c9f44642 (patch)
treedef6bb076b278fd272105105ee8fcb96b4df3de5 /.github
parent2a490d5660ac869f8f2bbcec4887b1dc2950643f (diff)
Revert the accidentally commits related GitHub Actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ubuntu-rvm.yml34
-rw-r--r--.github/workflows/workflow.yml21
2 files changed, 0 insertions, 55 deletions
diff --git a/.github/workflows/ubuntu-rvm.yml b/.github/workflows/ubuntu-rvm.yml
deleted file mode 100644
index 4337e7d0c8..0000000000
--- a/.github/workflows/ubuntu-rvm.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-name: ubuntu-rvm
-
-on: [push]
-
-jobs:
- build:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- ruby: [ 'ruby-head', 'jruby-9.2.8.0' ]
- test_tool: [ "rubygems", "bundler" ]
- steps:
- - uses: actions/checkout@master
- - run: git submodule update -i
- - name: Set up RVM
- run: |
- curl -sSL https://get.rvm.io | bash
- - name: Set up Ruby
- run: |
- source $HOME/.rvm/scripts/rvm
- rvm install ${{ matrix.ruby }} --binary
- rvm --default use ${{ matrix.ruby }}
- - name: Install dependencies
- run: |
- source $HOME/.rvm/scripts/rvm
- util/ci.sh before_script
- env:
- TEST_TOOL: ${{ matrix.test_tool }}
- - name: Run test
- run: |
- source $HOME/.rvm/scripts/rvm
- util/ci.sh script
- env:
- TEST_TOOL: ${{ matrix.test_tool }}
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
deleted file mode 100644
index f55feb020f..0000000000
--- a/.github/workflows/workflow.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-on: pull_request
-
-jobs:
- macos:
- runs-on: macos-latest
- strategy:
- matrix:
- ruby: [ '2.3.x', '2.4.x', '2.5.x', '2.6.x' ]
- steps:
- - uses: actions/checkout@master
- - name: Setup ruby
- uses: actions/setup-ruby@v1
- with:
- version: ${{ matrix.ruby }}
- architecture: 'x64'
- - name: Install Dependencies
- run: util/ci.sh before_script
- - name: Run Test
- run: util/ci.sh script
- env:
- TEST_TOOL: "rubygems"