Update to ruby 2.7.3
This commit is contained in:
parent
9a9c29a0d8
commit
4a927c6c12
8 changed files with 9 additions and 9 deletions
2
.github/workflows/js.yml
vendored
2
.github/workflows/js.yml
vendored
|
@ -1,7 +1,7 @@
|
||||||
# License: LGPL-3.0-or-later
|
# License: LGPL-3.0-or-later
|
||||||
name: Javascript build and test
|
name: Javascript build and test
|
||||||
env:
|
env:
|
||||||
ruby: '2.7.2'
|
ruby: '2.7.3'
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
|
|
2
.github/workflows/notice_ruby.yml
vendored
2
.github/workflows/notice_ruby.yml
vendored
|
@ -13,7 +13,7 @@ on:
|
||||||
- NOTICE-ruby
|
- NOTICE-ruby
|
||||||
env:
|
env:
|
||||||
os: ubuntu-20.04
|
os: ubuntu-20.04
|
||||||
ruby: '2.7.2'
|
ruby: '2.7.3'
|
||||||
jobs:
|
jobs:
|
||||||
notice_ruby:
|
notice_ruby:
|
||||||
runs-on: ${{ env.os }}
|
runs-on: ${{ env.os }}
|
||||||
|
|
2
.github/workflows/placeholders.yml
vendored
2
.github/workflows/placeholders.yml
vendored
|
@ -42,6 +42,6 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-20.04]
|
os: [ubuntu-20.04]
|
||||||
node: [14.6.0]
|
node: [14.6.0]
|
||||||
ruby: [2.7.2]
|
ruby: [2.7.3]
|
||||||
steps:
|
steps:
|
||||||
- run: 'echo "Placeholder for main_build"'
|
- run: 'echo "Placeholder for main_build"'
|
2
.github/workflows/ruby.yml
vendored
2
.github/workflows/ruby.yml
vendored
|
@ -27,7 +27,7 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-20.04]
|
os: [ubuntu-20.04]
|
||||||
node: [14.6.0]
|
node: [14.6.0]
|
||||||
ruby: [2.7.2]
|
ruby: [2.7.3]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Setup PostgreSQL with PostgreSQL extensions and unprivileged user
|
- name: Setup PostgreSQL with PostgreSQL extensions and unprivileged user
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
2.7.2
|
2.7.3
|
||||||
|
|
2
Gemfile
2
Gemfile
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
ruby '2.7.2'
|
ruby '2.7.3'
|
||||||
gem 'rails', '~> 6.1.3'
|
gem 'rails', '~> 6.1.3'
|
||||||
gem 'jbuilder', '~> 2.10'
|
gem 'jbuilder', '~> 2.10'
|
||||||
gem 'bootsnap', '~> 1.4', require: false # Large rails application booting enhancer
|
gem 'bootsnap', '~> 1.4', require: false # Large rails application booting enhancer
|
||||||
|
|
|
@ -481,7 +481,7 @@ DEPENDENCIES
|
||||||
wisper-rspec (~> 1.1.0)
|
wisper-rspec (~> 1.1.0)
|
||||||
|
|
||||||
RUBY VERSION
|
RUBY VERSION
|
||||||
ruby 2.7.2p137
|
ruby 2.7.3p183
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.1.4
|
2.1.4
|
||||||
|
|
|
@ -70,7 +70,7 @@ These include:
|
||||||
|
|
||||||
* PostgreSQL 12 (10 probably works)
|
* PostgreSQL 12 (10 probably works)
|
||||||
* NodeJS 14 (we require 14 because we want the full internationalization built-in)
|
* NodeJS 14 (we require 14 because we want the full internationalization built-in)
|
||||||
* Ruby 2.7.2
|
* Ruby 2.7.3
|
||||||
|
|
||||||
There a few optional tools which make working on Houdini
|
There a few optional tools which make working on Houdini
|
||||||
easier
|
easier
|
||||||
|
@ -122,7 +122,7 @@ curl -sSL https://rvm.io/pkuczynski.asc | gpg --import -
|
||||||
curl -sSL https://get.rvm.io | bash -s stable
|
curl -sSL https://get.rvm.io | bash -s stable
|
||||||
source $HOME/.rvm/scripts/rvm
|
source $HOME/.rvm/scripts/rvm
|
||||||
echo 'source "$HOME/.rvm/scripts/rvm"' >> ~/.bashrc
|
echo 'source "$HOME/.rvm/scripts/rvm"' >> ~/.bashrc
|
||||||
rvm install 2.7.2 --disable-binary --with-jemalloc
|
rvm install 2.7.3 --disable-binary --with-jemalloc
|
||||||
```
|
```
|
||||||
|
|
||||||
Run the following command as the `postgres` user and then enter your houdini_user
|
Run the following command as the `postgres` user and then enter your houdini_user
|
||||||
|
|
Loading…
Reference in a new issue