Skip to content

Commit

Permalink
CI: debug (#50)
Browse files Browse the repository at this point in the history
* Update ci.yml

Try setting rubygems version to prior recent releases.

* Update ci.yml

Try ruby at 3.3.0 again, with rubygems downgraded

* Update ci.yml

Try Rails 7.1

* Update ci.yml

Try Rails 7.0 and 7.1

* Update ci.yml

rails_version: [7.0.8, 7.1.3.2]

* Update ci.yml

rails_version: [7.1.3.2]

* Update ci.yml

rubygems: '3.5.6'

* Update ci.yml

      - name: Lock platform version
        run: bundle lock --add-platform ruby

* Update ci.yml

add ruby_version: [3.3]
rm rubygems: '3.5.6'
  • Loading branch information
ewlarson committed Apr 26, 2024
1 parent 5796ce0 commit 735b621
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby_version: ['3.2']
rails_version: [7.0.8]
ruby_version: [3.3]
rails_version: [7.1.3.2]

name: Test Blacklight / Ruby ${{ matrix.ruby_version }} / Rails ${{ matrix.rails_version }}
steps:
Expand All @@ -40,6 +40,8 @@ jobs:
node-version: '20.x'
- name: Create Solr container
run: docker run -d -p 8983:8983 geoblacklight/solr:8.9-v1.0.0 server/scripts/ci-start.sh
- name: Lock platform version
run: bundle lock --add-platform ruby
- name: Install dependencies
run: bundle install
env:
Expand All @@ -65,8 +67,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby_version: ['3.2']
rails_version: [7.0.8]
ruby_version: [3.3]
rails_version: [7.1.3.2]

name: Test GeoBlacklight / Ruby ${{ matrix.ruby_version }} / Rails ${{ matrix.rails_version }}
steps:
Expand All @@ -81,6 +83,8 @@ jobs:
node-version: '20.x'
- name: Create Solr container
run: docker run -d -p 8983:8983 geoblacklight/solr:8.9-v1.0.0 server/scripts/ci-start.sh
- name: Lock platform version
run: bundle lock --add-platform ruby
- name: Install dependencies
run: bundle install
env:
Expand Down

0 comments on commit 735b621

Please sign in to comment.