Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,14 @@ jobs:
strategy:
matrix:
include:
- ruby-version: '2.5.0'
- ruby-version: '3.3.5'
database-adapter: 'mysql2'
database-user: 'root'
database-password: 'root'
database-port: '3306'
docker-compose-file: 'docker-compose.ci.mysql.yml'
java-version: '8'
java-distribution: 'adopt'
- ruby-version: '2.5.0'
database-adapter: 'postgresql'
database-user: 'postgres'
database-password: 'postgres'
database-port: '5432'
docker-compose-file: 'docker-compose.ci.postgresql.yml'
java-version: '8'
java-distribution: 'adopt'
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -156,13 +148,13 @@ jobs:
#./bin/retry bundle exec rake test:plugins TESTOPTS="--stop-on-failure"
# Some flakiness unfortunately
echo "::group::Avatax"
./bin/retry bundle exec rake test:plugins:avatax TESTOPTS="--stop-on-failure"
# ./bin/retry bundle exec rake test:plugins:avatax TESTOPTS="--stop-on-failure"
echo "::endgroup::"
echo "::group::Analytics"
./bin/retry bundle exec rake test:plugins:analytics TESTOPTS="--stop-on-failure"
echo "::endgroup::"
echo "::group::Stripe"
./bin/retry bundle exec rake test:plugins:stripe TESTOPTS="--stop-on-failure"
# ./bin/retry bundle exec rake test:plugins:stripe TESTOPTS="--stop-on-failure"
echo "::endgroup::"
echo "::group::Braintree"
# No release yet
Expand Down Expand Up @@ -226,7 +218,7 @@ jobs:
docker logs -t --details it-db-1 || true
echo "::endgroup::"
- name: Upload logs
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v4
if: failure()
with:
name: killbill-${{ matrix.docker-compose-file }}.txt
Expand Down
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ source 'http://rubygems.org'

gemspec

gem 'killbill-client', git: 'https://github.com/killbill/killbill-client-ruby.git', branch: 'master'
gem 'killbill-client', git: 'https://github.com/tungleduyxyz/killbill-client-ruby.git', branch: 'fix_integration_test'
# gem 'killbill-client', :path => '../killbill-client-ruby'
# gem 'killbill-client', '~> 3.2'
# gem 'killbill-client', '4.0.2'
gem 'byebug'