Skip to content

Commit

Permalink
Point to killbill-client-ruby gem instead of GH/Fix ci error
Browse files Browse the repository at this point in the history
  • Loading branch information
reshmabidikar committed Oct 21, 2024
1 parent cbd06ab commit a670db8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs:
- name: Start stack
run: |
cd docker
docker-compose -p it -f ${{ matrix.docker-compose-file }} up --no-start
docker start it_db_1
docker compose -p it -f ${{ matrix.docker-compose-file }} up --no-start
docker start it-db-1
- name: Wait for MySQL
if: ${{ matrix.docker-compose-file == 'docker-compose.ci.mysql.yml' }}
run: |
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
# Sometimes it gets stuck (if Kill Bill starts when the DB isn't ready?)
timeout-minutes: 4
run: |
docker start it_killbill_1
docker start it-killbill-1
count=0
until $(curl --connect-timeout 10 --max-time 30 --output /dev/null --silent --fail http://${KB_ADDRESS}:${KB_PORT}/1.0/healthcheck); do
if [[ "$count" == "180" ]]; then
Expand Down Expand Up @@ -127,10 +127,10 @@ jobs:
echo "[DEBUG] docker ps -a"
docker ps -a
echo "[DEBUG] killbill env"
docker exec it_killbill_1 env || true
docker exec it-killbill-1 env || true
echo "[DEBUG] db env"
docker exec it_db_1 env || true
docker exec it-db-1 env || true
echo "[DEBUG] killbill logs"
docker logs -t --details it_killbill_1 || true
docker logs -t --details it-killbill-1 || true
echo "[DEBUG] db logs"
docker logs -t --details it_db_1 || true
docker logs -t --details it-db-1 || true
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ gemspec
group :development do
gem 'gem-release'
gem 'json'
gem 'killbill-client', github: 'killbill/killbill-client-ruby', ref: 'master'
gem 'killbill-client'
gem 'listen'
gem 'puma'
gem 'rake'
Expand Down

0 comments on commit a670db8

Please sign in to comment.