mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-09-05 20:26:31 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
1006 B
YAML
31 lines
1006 B
YAML
name: Look for flaky tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 4 * * *' # Every day at 4:00AM
|
|
|
|
jobs:
|
|
flaky:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
# Use ubuntu-22.04 to compile with glibc 2.35
|
|
image: ubuntu:22.04
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Install needed dependencies
|
|
run: |
|
|
apt-get update && apt-get install -y curl
|
|
apt-get install build-essential -y
|
|
- uses: dtolnay/rust-toolchain@1.85
|
|
- name: Install cargo-flaky
|
|
run: cargo install cargo-flaky
|
|
- name: Run cargo flaky in the dumps
|
|
run: cd crates/dump; cargo flaky -i 100 --release
|
|
- name: Run cargo flaky in the index-scheduler
|
|
run: cd crates/index-scheduler; cargo flaky -i 100 --release
|
|
- name: Run cargo flaky in the auth
|
|
run: cd crates/meilisearch-auth; cargo flaky -i 100 --release
|
|
- name: Run cargo flaky in meilisearch
|
|
run: cd crates/meilisearch; cargo flaky -i 100 --release
|