Skip to content

Commit

Permalink
fixup! [CI] Solr image: review suggestions (cron, image tests)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnocon committed Dec 7, 2023
1 parent 2818872 commit 7fef1cb
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/gha-docker-solr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ jobs:
runs-on: ubuntu-latest
permissions:
packages: write
services:
redis:
image: redis
ports:
- 6379:6379
options:
--memory=60m
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -44,7 +51,9 @@ jobs:

- name: Start Solr image
run: |
docker run -d -p 8983:8983 "$IMAGE_NAME:latest"
docker run --health-cmd "solr status" \
--health-interval 10s --health-timeout 5s --health-retries 10 \
-d -p 8983:8983 "$IMAGE_NAME:latest"
- name: Run Solr integration test suite
run: composer test-integration-solr
Expand Down

0 comments on commit 7fef1cb

Please sign in to comment.