Files
qdrant/.github/workflows/rust.yml
dependabot[bot] a050b1c34d build(deps): bump actions/checkout from 7.0.0 to 7.0.1 (#9911)
Bumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](9c091bb21b...3d3c42e5aa)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

117 lines
4.5 KiB
YAML

name: Rust tests
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ '**' ]
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
rust-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- name: Install minimal stable
uses: dtolnay/rust-toolchain@631a55b12751854ce901bb631d5902ceb48146f7 # stable
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
with:
# Only save the cache on dev; feature-branch caches would just get evicted under the 10 GB budget
save-if: ${{ github.ref == 'refs/heads/dev' }}
- name: Install Protoc
uses: ./.github/actions/setup-protoc
- name: Install mold
uses: rui314/setup-mold@9c9c13bf4c3f1adef0cc596abc155580bcb04444 # v1
- name: Enable mold on Linux
run: |
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then
mkdir .cargo
echo "[target.x86_64-unknown-linux-gnu]" >> .cargo/config.toml
echo "linker = \"clang\"" >> .cargo/config.toml
echo "rustflags = [\"-C\", \"link-arg=-fuse-ld=/usr/local/bin/mold\"]" >> .cargo/config.toml
fi
shell: bash
- name: Install nextest
uses: taiki-e/install-action@3a0adc33ab45d7b9b9da91822dd2b3c0151704be # nextest
- name: Build
run: cargo build --workspace --tests --locked
- name: Run tests
# Profile "ci" is configured in .config/nextest.toml
run: cargo nextest run --workspace --profile ci --locked
- name: Upload test report
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: junit-${{ matrix.os }}.xml
path: target/nextest/ci/junit.xml
# After tests are run, this hacky script will process the JUnit output of nextest
# and will create a GH Issue if there is a test marked as flaky,
# Failure of updating an issue is ignored because it fails for external contributors.
process-results:
runs-on: ubuntu-latest
needs: rust-tests
permissions:
contents: read
issues: write
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- name: Download test report
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: junit-${{ matrix.os }}.xml
- name: Process test report
id: process-test-report
run: |
pip install yq
xq '.. | select(type == "object") | select(has("flakyFailure"))' junit.xml > flaky_tests.json
echo has_flaky_tests=$(jq '. | has("flakyFailure")' flaky_tests.json) >> $GITHUB_OUTPUT
- name: Get flaky test details
id: get-flaky-tests
if: ${{ steps.process-test-report.outputs.has_flaky_tests == 'true' }}
run: |
echo "Flaky tests found"
echo test=$(jq '.["@name"]' flaky_tests.json -r ) >> $GITHUB_OUTPUT
delimiter="###r###"
echo "content<<$delimiter" >> $GITHUB_OUTPUT
echo "$(jq '[.flakyFailure] | flatten | .[0]["system-err"]' flaky_tests.json -r)" >> $GITHUB_OUTPUT
echo $delimiter >> $GITHUB_OUTPUT
- name: pull issue template
if: ${{ steps.process-test-report.outputs.has_flaky_tests == 'true' }}
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
sparse-checkout: |
.github/ISSUE_TEMPLATE/flaky_test.md
sparse-checkout-cone-mode: false
- name: Create issue for flaky tests
continue-on-error: true
id: create-issue
if: ${{ steps.process-test-report.outputs.has_flaky_tests == 'true' }}
uses: JasonEtco/create-an-issue@1b14a70e4d8dc185e5cc76d3bec9eab20257b2c5 # v2.9.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TEST_NAME: ${{ steps.get-flaky-tests.outputs.test }}
SYSTEM_ERROR: ${{ steps.get-flaky-tests.outputs.content }}
REPOSITORY: ${{ github.repository }}
RUN_ID: ${{ github.run_id }}
JOB_ID: ${{ github.job }}
SHA: ${{ github.sha }}
WORKFLOW: ${{ github.workflow }}
JOB: ${{ github.job }}
BRANCH: ${{ github.ref }}
OS: ${{ matrix.os }}
PR: "#${{ github.event.pull_request.number }}"
with:
filename: .github/ISSUE_TEMPLATE/flaky_test.md
update_existing: true