-
Notifications
You must be signed in to change notification settings - Fork 2
98 lines (96 loc) · 2.96 KB
/
test-intermittent-failure.yml
File metadata and controls
98 lines (96 loc) · 2.96 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: Test Intermittent Failures
# Repositories found here were intermittently failing
on:
workflow_dispatch:
inputs:
clojureRepo:
description: "Repository name with owner."
required: true
default: 'clojure/clojure'
clojureRef:
description: "The branch, tag or SHA to checkout"
required: true
default: 'master'
jobs:
test-scicloj-metamorph-ml:
uses: ./.github/workflows/deps-test.yml
with:
clojureRepo: ${{ inputs.clojureRepo }}
clojureRef: ${{ inputs.clojureRef }}
subjectRepo: 'scicloj/metamorph.ml'
subjectRef: 'main'
testDir: '.'
testCmd: '-A:test -m kaocha.runner'
javaVersion: '["11", "17", "21"]'
test-clj-commons-manifold:
uses: ./.github/workflows/lein-test.yml
with:
clojureRepo: ${{ inputs.clojureRepo }}
clojureRef: ${{ inputs.clojureRef }}
subjectRepo: 'clj-commons/manifold'
subjectRef: 'master'
## Appears to be missing test path under runner allies
test-pattern:
uses: ./.github/workflows/deps-test.yml
with:
clojureRepo: ${{ inputs.clojureRepo }}
clojureRef: ${{ inputs.clojureRef }}
testCmd: '-M:test:runner'
testDir: '.'
subjectRepo: 'pangloss/pattern'
subjectRef: 'main'
test-alphabase:
uses: ./.github/workflows/deps-test.yml
with:
clojureRepo: ${{ inputs.clojureRepo }}
clojureRef: ${{ inputs.clojureRef }}
testCmd: '-X:test'
testDir: '.'
subjectRepo: 'greglook/alphabase'
subjectRef: 'main'
test-dom-top:
uses: ./.github/workflows/lein-test.yml
with:
clojureRepo: ${{ inputs.clojureRepo }}
clojureRef: ${{ inputs.clojureRef }}
subjectRepo: 'aphyr/dom-top'
subjectRef: 'master'
javaVersion: '["11", "17", "21"]'
test-schema-generators:
uses: ./.github/workflows/lein-test.yml
with:
clojureRepo: ${{ inputs.clojureRepo }}
clojureRef: ${{ inputs.clojureRef }}
subjectRepo: 'plumatic/schema-generators'
subjectRef: 'master'
test-blocks:
uses: ./.github/workflows/lein-test.yml
with:
clojureRepo: ${{ inputs.clojureRepo }}
clojureRef: ${{ inputs.clojureRef }}
subjectRepo: 'greglook/blocks'
subjectRef: 'main'
test-nrepl:
uses: ./.github/workflows/lein-test.yml
with:
clojureRepo: ${{ inputs.clojureRepo }}
clojureRef: ${{ inputs.clojureRef }}
subjectRepo: 'nrepl/nrepl'
subjectRef: 'master'
test-lacinia:
uses: ./.github/workflows/deps-test.yml
with:
clojureRepo: ${{ inputs.clojureRepo }}
clojureRef: ${{ inputs.clojureRef }}
testCmd: '-X:dev:test'
testDir: '.'
subjectRepo: 'walmartlabs/lacinia'
subjectRef: 'master'
test-midje:
uses: ./.github/workflows/lein-test.yml
with:
clojureRepo: ${{ inputs.clojureRepo }}
clojureRef: ${{ inputs.clojureRef }}
subjectRepo: 'marick/midje'
subjectRef: 'master'
javaVersion: '["11", "17", "21"]'