Skip to content

Commit

Permalink
Use docker-compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
olivergrabinski committed Mar 21, 2024
1 parent 1d97b0b commit efc1e6b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci-delta-ship.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,18 @@ jobs:
java-version: '21'
cache: 'sbt'
check-latest: true
- name: Clean, build Delta & Storage images
run: |
sbt -Dsbt.color=always -Dsbt.supershell=false \
clean \
app/Docker/publishLocal \
storage/Docker/publishLocal
- name: Start services
run: docker-compose -f tests/docker/docker-compose.yml up -d
- name: Waiting for Delta to start
run: |
URL="http://localhost:8080/v1/version"
curl --connect-timeout 3 --max-time 5 --retry 30 --retry-all-errors --retry-delay 3 --retry-max-time 90 $URL
- name: Unit tests
run: |
sbt -Dsbt.color=always -Dsbt.supershell=false \
Expand Down

0 comments on commit efc1e6b

Please sign in to comment.