mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-09 22:48:54 +01:00
31 lines
953 B
YAML
31 lines
953 B
YAML
name: Look for flaky tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 12 * * FRI" # Every Friday at 12:00PM
|
|
|
|
jobs:
|
|
flaky:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
# Use ubuntu-20.04 to compile with glibc 2.28
|
|
image: ubuntu:20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install needed dependencies
|
|
run: |
|
|
apt-get update && apt-get install -y curl
|
|
apt-get install build-essential -y
|
|
- uses: dtolnay/rust-toolchain@1.79
|
|
- name: Install cargo-flaky
|
|
run: cargo install cargo-flaky
|
|
- name: Run cargo flaky in the dumps
|
|
run: cd dump; cargo flaky -i 100 --release
|
|
- name: Run cargo flaky in the index-scheduler
|
|
run: cd index-scheduler; cargo flaky -i 100 --release
|
|
- name: Run cargo flaky in the auth
|
|
run: cd meilisearch-auth; cargo flaky -i 100 --release
|
|
- name: Run cargo flaky in meilisearch
|
|
run: cd meilisearch; cargo flaky -i 100 --release
|