2021-06-10 17:02:06 +02:00
|
|
|
name: Look for flaky tests
|
2021-06-10 16:53:30 +02:00
|
|
|
on:
|
2022-11-14 10:10:00 +01:00
|
|
|
workflow_dispatch:
|
2021-06-10 16:53:30 +02:00
|
|
|
schedule:
|
2022-11-14 10:10:00 +01:00
|
|
|
- cron: "0 12 * * FRI" # Every Friday at 12:00PM
|
2021-06-10 16:53:30 +02:00
|
|
|
|
|
|
|
jobs:
|
2021-06-10 17:07:23 +02:00
|
|
|
flaky:
|
2022-12-19 10:46:29 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
2022-12-19 18:46:27 +01:00
|
|
|
# Use ubuntu-18.04 to compile with glibc 2.27, which are the production expectations
|
2022-12-19 10:46:29 +01:00
|
|
|
image: ubuntu:18.04
|
2021-06-10 16:53:30 +02:00
|
|
|
steps:
|
2022-06-28 22:21:41 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-12-19 10:46:29 +01:00
|
|
|
- name: Install needed dependencies
|
|
|
|
run: |
|
|
|
|
apt-get update && apt-get install -y curl
|
|
|
|
apt-get install build-essential -y
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
2021-06-10 17:02:06 +02:00
|
|
|
- name: Install cargo-flaky
|
2021-06-10 16:53:30 +02:00
|
|
|
run: cargo install cargo-flaky
|
2023-01-16 18:44:47 +01:00
|
|
|
- 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
|