Skip to content

Commit

Permalink
Can we build ffi now?
Browse files Browse the repository at this point in the history
  • Loading branch information
mec committed Jul 12, 2024
1 parent 432923e commit 16ba03d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rails-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- id: compute-outputs
name: Compute outputs
run: |
rails_versions=$(curl https://rubygems.org/api/v1/versions/rails.json | jq 'group_by(.number[:1])[] | (.[0].number) | select(.[:1]|tonumber > 5)' | jq -s -c)
rails_versions=$(curl https://rubygems.org/api/v1/versions/rails.json | jq 'group_by(.number[:1])[] | (.[0].number) | select(.[:1]|tonumber > 4)' | jq -s -c)
echo "RAILS_VERSIONS=$rails_versions" >> $GITHUB_OUTPUT
build-rails:
strategy:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# We want to support older Rubies
ARG RUBY_VERSION=3.1.6
ARG RUBY_VERSION=2.7.8
FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base

# Rails app lives here
Expand Down Expand Up @@ -42,7 +42,7 @@ FROM base

# Install packages needed for running the tests
RUN apt-get update -qq && \
apt-get install --no-install-recommends -y curl git && \
apt-get install --no-install-recommends -y build-essential curl git && \
rm -rf /var/lib/apt/lists /var/cache/apt/archives

# Copy built artifacts: gems, application
Expand Down

0 comments on commit 16ba03d

Please sign in to comment.