mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 04:28:55 +01:00
dc93853946
This is to prevent linking with a version of glibc that is too recent. With meilisearch v0.29.0 we inadvertently bumped the minimum supported glibc version to 2.29, which means it couldn't be run from Debian 10 (for example) anymore. By using Ubuntu 18.04, which uses glibc 2.27, we restore support for older Linux distros.
16 lines
329 B
YAML
16 lines
329 B
YAML
name: Look for flaky tests
|
|
on:
|
|
schedule:
|
|
- cron: "0 12 * * FRI" # every friday at 12:00PM
|
|
|
|
jobs:
|
|
flaky:
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install cargo-flaky
|
|
run: cargo install cargo-flaky
|
|
- name: Run cargo flaky 100 times
|
|
run: cargo flaky -i 100 --release
|