Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump tested rubies to the latest patch levels #596

Merged
merged 1 commit into from Oct 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 14 additions & 14 deletions .github/workflows/build.yml
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
version: ["2.4.7", "2.5.6", "2.6.4", "head"]
version: ["2.4.9", "2.5.7", "2.6.5", "head"]
line_editor: ["libedit", "readline"]
compiler: ["clang", "gcc"]

Expand All @@ -33,7 +33,7 @@ jobs:
path: coverage/codeclimate.${{ matrix.version }}-${{ matrix.line_editor }}-${{ matrix.compiler }}.json

coverage:
container: deividrodriguez/byebug:2.6.4-readline-gcc
container: deividrodriguez/byebug:2.6.5-readline-gcc

runs-on: ubuntu-18.04

Expand All @@ -45,62 +45,62 @@ jobs:
steps:
- uses: actions/download-artifact@v1
with:
name: coverage-2.4.7-libedit-clang
name: coverage-2.4.9-libedit-clang
path: coverage

- uses: actions/download-artifact@v1
with:
name: coverage-2.4.7-libedit-gcc
name: coverage-2.4.9-libedit-gcc
path: coverage

- uses: actions/download-artifact@v1
with:
name: coverage-2.4.7-readline-clang
name: coverage-2.4.9-readline-clang
path: coverage

- uses: actions/download-artifact@v1
with:
name: coverage-2.4.7-readline-gcc
name: coverage-2.4.9-readline-gcc
path: coverage

- uses: actions/download-artifact@v1
with:
name: coverage-2.5.6-libedit-clang
name: coverage-2.5.7-libedit-clang
path: coverage

- uses: actions/download-artifact@v1
with:
name: coverage-2.5.6-libedit-gcc
name: coverage-2.5.7-libedit-gcc
path: coverage

- uses: actions/download-artifact@v1
with:
name: coverage-2.5.6-readline-clang
name: coverage-2.5.7-readline-clang
path: coverage

- uses: actions/download-artifact@v1
with:
name: coverage-2.5.6-readline-gcc
name: coverage-2.5.7-readline-gcc
path: coverage

- uses: actions/download-artifact@v1
with:
name: coverage-2.6.4-libedit-clang
name: coverage-2.6.5-libedit-clang
path: coverage

- uses: actions/download-artifact@v1
with:
name: coverage-2.6.4-libedit-gcc
name: coverage-2.6.5-libedit-gcc
path: coverage

- uses: actions/download-artifact@v1
with:
name: coverage-2.6.4-readline-clang
name: coverage-2.6.5-readline-clang
path: coverage

- uses: actions/download-artifact@v1
with:
name: coverage-2.6.4-readline-gcc
name: coverage-2.6.5-readline-gcc
path: coverage

- name: Aggregate & upload results to Code Climate
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_head_images.yml
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
container: deividrodriguez/byebug:2.6.4-readline-gcc
container: deividrodriguez/byebug:2.6.5-readline-gcc

runs-on: ubuntu-18.04

Expand Down
6 changes: 3 additions & 3 deletions docker/manager.rb
Expand Up @@ -10,9 +10,9 @@ module Docker
#
class Manager
VERSIONS = %w[
2.4.7
2.5.6
2.6.4
2.4.9
2.5.7
2.6.5
].freeze

LINE_EDITORS = %w[
Expand Down