Skip to content

Commit

Permalink
Upgrade build chain to use docker compose.
Browse files Browse the repository at this point in the history
  • Loading branch information
blambeau committed Aug 26, 2024
1 parent e3bc8b2 commit 558608c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.4
ruby-version: 3.1
bundler-cache: true

- run: make package
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:

- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.4
ruby-version: 3.1
bundler-cache: true

- run: make package
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package: bundle

tests: bundle
bundle exec rake test
cd contrib/bmg-redis && docker-compose up -d && bundle exec rake test && docker-compose down
cd contrib/bmg-redis && docker compose up -d && bundle exec rake test && docker compose down

gem.push:
ls pkg/bmg-*.gem | xargs gem push
Expand Down

0 comments on commit 558608c

Please sign in to comment.