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:
|
|
|
|
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
|
2021-06-21 17:36:54 +02:00
|
|
|
- name: Run cargo flaky 100 times
|
|
|
|
run: cargo flaky -i 100 --release
|