Skip to content

Commit

Permalink
ci: unknown flag remove orphans
Browse files Browse the repository at this point in the history
  • Loading branch information
ernado committed Nov 29, 2024
1 parent 9b0f324 commit 7b84e1a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Reset compose
working-directory: ${{ env.WORKDIR }}
run: docker compose down --remove-orphans --volumes --timeout 10
run: docker compose down --volumes --timeout 10

- name: Start compose
working-directory: ${{ env.WORKDIR }}
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Cleanup
working-directory: ${{ env.WORKDIR }}
if: ${{ ! cancelled() }}
run: docker compose down --remove-orphans --volumes --timeout 10
run: docker compose down --volumes --timeout 10

CheckBenchAPI:
runs-on: [Linux, bench]
Expand Down
2 changes: 1 addition & 1 deletion dev/local/ch-bench-read/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ trap clean_up EXIT
set -e

echo ">> Setup oteldb locally"
docker compose up -d --remove-orphans --build --force-recreate
docker compose up -d --build --force-recreate

echo ">> Upload benchmark data"
wget -N https://storage.yandexcloud.net/faster-public/oteldb/req.rwq
Expand Down
2 changes: 1 addition & 1 deletion dev/local/ch-compliance/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ trap clean_up EXIT

set -e

docker compose up -d --remove-orphans --build --force-recreate
docker compose up -d --build --force-recreate

go run ./cmd/compliance-wait -wait 10s

Expand Down
2 changes: 1 addition & 1 deletion dev/local/ch-log-bench-read/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ trap clean_up EXIT
set -e

echo ">> Setup oteldb locally"
docker compose up -d --remove-orphans --build --force-recreate
docker compose up -d --build --force-recreate

start_time="2024-01-01T00:01:10Z"
end_time="2024-01-01T00:05:10Z"
Expand Down
2 changes: 1 addition & 1 deletion dev/local/ch-logql-compliance/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ trap clean_up EXIT

set -e

docker compose up -d --remove-orphans --build --force-recreate
docker compose up -d --build --force-recreate

echo ">> Testing oteldb implementation"
RANGE="1m"
Expand Down

0 comments on commit 7b84e1a

Please sign in to comment.