Skip to content

Commit 5a5ca7a

Browse files
authored
Images are still being pulled in a parallel manner (#3322)
1 parent c898733 commit 5a5ca7a

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
benchmark:
2626
name: Execute benchmarks
2727
runs-on: ubuntu-latest
28+
timeout-minutes: 30
2829
steps:
2930
- name: Checkout project
3031
uses: actions/checkout@v4

.github/workflows/integration.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ jobs:
4646
- name: Install missing dependencies to container
4747
run: |
4848
sudo apt update
49-
- name: Pull containers in a serial way
50-
run: |
51-
docker compose $COMPOSE_ENV_FILES -f src/test/resources/docker-env/docker-compose.yml --parallel 1 pull
5249
- name: Set up Docker Compose environment
5350
run: |
5451
mkdir -m 777 $REDIS_ENV_WORK_DIR

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ start:
2727
echo "Environment work directory: $(REDIS_ENV_WORK_DIR)"; \
2828
rm -rf "$(REDIS_ENV_WORK_DIR)"; \
2929
mkdir -p "$(REDIS_ENV_WORK_DIR)"; \
30-
docker compose $$env_files -f src/test/resources/docker-env/docker-compose.yml up -d; \
30+
docker compose $$env_files -f src/test/resources/docker-env/docker-compose.yml --parallel 1 up -d; \
3131
echo "Started test environment with Redis version $$version."
3232

3333

0 commit comments

Comments
 (0)