-
Notifications
You must be signed in to change notification settings - Fork 5
72 lines (60 loc) · 1.57 KB
/
mutex.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Run Tests for Mutex
on: [workflow_call]
env:
CARGO_TERM_COLOR: always
jobs:
basic:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run test basic
uses: ./.github/workflows/actions/run-test
with:
category: sync
sub-category: mutex
test-name: basic
stress:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run test stress
uses: ./.github/workflows/actions/run-test
with:
category: sync
sub-category: mutex
test-name: stress
priority:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run test priority
uses: ./.github/workflows/actions/run-test
with:
category: sync
sub-category: mutex
test-name: priority
poison:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run test poison
uses: ./.github/workflows/actions/run-test
with:
category: sync
sub-category: mutex
test-name: poison
priority_inversion:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run test priority_inversion
uses: ./.github/workflows/actions/run-test
with:
category: sync
sub-category: mutex
test-name: priority_inversion