Skip to content

Commit

Permalink
Fix CI env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
westonganger committed Aug 20, 2024
1 parent 6e00ccc commit a39c589
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 15 deletions.
24 changes: 10 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,23 @@ jobs:
- ruby: "2.6"
- ruby: "2.7"
- ruby: "3.0"
db_gem_version: "~> 1.4" # fixes sqlite3 gem dependency issue
- ruby: "3.1"
- ruby: "3.2"
- ruby: "3.3"
### TEST RAILS VERSIONS
- ruby: "2.6"
env:
RAILS_VERSION: "5.2"
rails_version: "~> 5.2"
- ruby: "2.6"
env:
RAILS_VERSION: "6.0"
rails_version: "~> 6.0"
- ruby: "2.6"
env:
RAILS_VERSION: "6.1"
rails_version: "~> 6.1"
- ruby: "3.3"
env:
RAILS_VERSION: "7.0"
rails_version: "~> 7.0"
- ruby: "3.3"
env:
RAILS_VERSION: "7.1"
rails_version: "~> 7.1"
- ruby: "3.3"
env:
RAILS_VERSION: "7.2"
rails_version: ~> "7.2"
### TEST NON-DEFAULT DATABASES
- ruby: "3.3"
db_gem: "mysql2"
Expand Down Expand Up @@ -75,10 +70,11 @@ jobs:
echo "DATABASE_URL=postgres://postgres:password@localhost:5432/test" >> "$GITHUB_ENV"
fi
- name: Set env DB_GEM
if: ${{ matrix.db_gem }}
- name: Set env variables
run: |
echo "RAILS_VERSION=${{ matrix.rails_version }}" >> "$GITHUB_ENV"
echo "DB_GEM=${{ matrix.db_gem }}" >> "$GITHUB_ENV"
echo "DB_GEM_VERSION=${{ matrix.db_gem_version }}" >> "$GITHUB_ENV"
- name: Install ruby
uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ end
gem 'rails', get_env("RAILS_VERSION")

db_gem = get_env("DB_GEM") || "sqlite3"
gem db_gem
gem db_gem, get_env("DB_GEM_VERSION")

0 comments on commit a39c589

Please sign in to comment.