aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2020-02-22 15:09:21 +0100
committerBenoit Daloze <eregontp@gmail.com>2020-02-22 15:09:21 +0100
commitbf145c630ea99f7806f24e0729a2d80a8d10dafc (patch)
tree11f7fafaae15d58b3c0848c81b5427bb7f452c77 /.github/workflows
parent3009965e939bcc5df21276e41ce75996758e2716 (diff)
downloadruby-openssl-bf145c630ea99f7806f24e0729a2d80a8d10dafc.tar.gz
Remove redundant and ignored workflow file
* .github/workflows/ubuntu-macos.yml already tests those.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/rvm.yml_43
1 files changed, 0 insertions, 43 deletions
diff --git a/.github/workflows/rvm.yml_ b/.github/workflows/rvm.yml_
deleted file mode 100644
index ee5dcd21..00000000
--- a/.github/workflows/rvm.yml_
+++ /dev/null
@@ -1,43 +0,0 @@
-name: OpenSSL
-
-on: [push, pull_request]
-
-jobs:
- # tests RVM Ruby 2.3.8 and master
- rvm:
- name: >-
- ${{ matrix.ruby }} ubuntu rvm
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- cfg:
- - { ruby: '2.3.8' , openssl: 'libssl1.0-dev' }
- - { ruby: '2.7.0' , openssl: '' }
- steps:
- - uses: actions/checkout@v2
- - 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.cfg.ruby }} --binary --autolibs=disable
- rvm --default use ${{ matrix.cfg.ruby }}
- - name: install openssl
- if: matrix.cfg.openssl != ''
- run: sudo apt-get -qy install ${{ matrix.cfg.openssl }}
- - name: depends
- run: |
- source $HOME/.rvm/scripts/rvm
- rake install_dependencies
- - name: compile
- run: |
- source $HOME/.rvm/scripts/rvm
- rake compile -- --enable-debug
- - name: test
- run: |
- source $HOME/.rvm/scripts/rvm
- rake test TESTOPTS="-v --no-show-detail-immediately" OSSL_MDEBUG=1
- env:
- CI: true \ No newline at end of file