Files
qdrant/.github/workflows/long-e2e-tests.yml
dependabot[bot] 439fe4ff02 build(deps): bump docker/setup-buildx-action from 4.1.0 to 4.2.0 (#9700)
Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 4.1.0 to 4.2.0.
- [Release notes](https://github.com/docker/setup-buildx-action/releases)
- [Commits](d7f5e7f509...bb05f3f551)

---
updated-dependencies:
- dependency-name: docker/setup-buildx-action
  dependency-version: 4.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-07-06 15:41:35 -04:00

59 lines
1.9 KiB
YAML

name: Long Integration Tests
on:
schedule:
- cron: '30 6 * * *' # At 06:30
workflow_dispatch:
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
UV_VERSION: 0.9.17
jobs:
long-e2e-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ github.event_name == 'schedule' && 'dev' || github.ref_name }}
lfs: true # Fetch LFS files automatically
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: '3.13'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0
- name: Install uv and Python dependencies
run: |
curl -LsSf https://astral.sh/uv/$UV_VERSION/install.sh | sh
echo "$HOME/.local/bin" >> $GITHUB_PATH
uv --project tests lock --check
uv --project tests sync
- name: Build Qdrant Docker image
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0
with:
context: .
tags: qdrant/qdrant:e2e-tests
load: true
build-args: |
PROFILE=ci
FEATURES=data-consistency-check,staging
- name: Verify Docker image
run: docker images | grep qdrant
- name: Run e2e tests
run: uv --project tests run pytest -n 4 tests/e2e_tests -v --tb=short --durations=5 -m "longrunning"
shell: bash
timeout-minutes: 50
- name: Upload test logs on failure
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: failure()
with:
name: e2e-test-logs
path: |
tests/e2e_tests/test_*.log
tests/e2e_tests/**/logs/
retention-days: 7