2021-06-10 23:02:06 +08:00
|
|
|
name: Look for flaky tests
|
2021-06-10 22:53:30 +08:00
|
|
|
on:
|
2022-11-14 17:10:00 +08:00
|
|
|
workflow_dispatch:
|
2021-06-10 22:53:30 +08:00
|
|
|
schedule:
|
2022-11-14 17:10:00 +08:00
|
|
|
- cron: "0 12 * * FRI" # Every Friday at 12:00PM
|
2021-06-10 22:53:30 +08:00
|
|
|
|
|
|
|
jobs:
|
2021-06-10 23:07:23 +08:00
|
|
|
flaky:
|
2022-12-19 17:46:29 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
2022-12-20 01:46:27 +08:00
|
|
|
# Use ubuntu-18.04 to compile with glibc 2.27, which are the production expectations
|
2022-12-19 17:46:29 +08:00
|
|
|
image: ubuntu:18.04
|
2021-06-10 22:53:30 +08:00
|
|
|
steps:
|
2022-06-29 04:21:41 +08:00
|
|
|
- uses: actions/checkout@v3
|
2022-12-19 17:46:29 +08: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 23:02:06 +08:00
|
|
|
- name: Install cargo-flaky
|
2021-06-10 22:53:30 +08:00
|
|
|
run: cargo install cargo-flaky
|
2021-06-21 23:36:54 +08:00
|
|
|
- name: Run cargo flaky 100 times
|
|
|
|
run: cargo flaky -i 100 --release
|