Skip to content

Commit 957939d

Browse files
committed
Add new repos to test
1 parent d6b2a1f commit 957939d

File tree

4 files changed

+656
-196
lines changed

4 files changed

+656
-196
lines changed

.github/workflows/debug-stuff.yml

+29-61
Original file line numberDiff line numberDiff line change
@@ -13,66 +13,34 @@ on:
1313
default: 'master'
1414

1515
jobs:
16-
test-money:
17-
uses: ./.github/workflows/lein-test.yml
18-
with:
19-
clojureRepo: ${{ inputs.clojureRepo }}
20-
clojureRef: ${{ inputs.clojureRef }}
21-
subjectRepo: 'clojurewerkz/money'
22-
subjectRef: 'main'
23-
javaVersion: '["11", "17", "21"]'
2416

25-
test-cheshire:
26-
uses: ./.github/workflows/lein-test.yml
27-
with:
28-
clojureRepo: ${{ inputs.clojureRepo }}
29-
clojureRef: ${{ inputs.clojureRef }}
30-
subjectRepo: 'dakrone/cheshire'
31-
subjectRef: 'master'
32-
javaVersion: '["8", "11", "17"]'
17+
## Uses bb to run tests unsure how to override clj version
18+
# test-clj-yaml:
19+
# uses: ./.github/workflows/deps-test.yml
20+
# with:
21+
# clojureRepo: ${{ inputs.clojureRepo }}
22+
# clojureRef: ${{ inputs.clojureRef }}
23+
# testCmd: '-M:test'
24+
# testDir: '.'
25+
# subjectRepo: 'clj-commons/clj-yaml'
26+
# subjectRef: 'master'
27+
# javaVersion: '["11", "17", "21"]'
28+
## CI Failing in repo
29+
# test-durable-queue:
30+
# uses: ./.github/workflows/lein-test.yml
31+
# with:
32+
# clojureRepo: ${{ inputs.clojureRepo }}
33+
# clojureRef: ${{ inputs.clojureRef }}
34+
# subjectRepo: 'clj-commons/durable-queue'
35+
# subjectRef: 'master'
36+
## Uses xvfb
37+
# test-seesaw:
38+
# uses: ./.github/workflows/lein-test.yml
39+
# with:
40+
# clojureRepo: ${{ inputs.clojureRepo }}
41+
# clojureRef: ${{ inputs.clojureRef }}
42+
# preTest: 'export DISPLAY=:99.0 && sh -e /etc/init.d/xvfb start'
43+
# testCmd: 'lein deps; lein javac; export DISPLAY=:99.0; ./lazytest.sh'
44+
# subjectRepo: 'clj-commons/seesaw'
45+
# subjectRef: 'master'
3346

34-
test-ring-core:
35-
uses: ./.github/workflows/lein-test.yml
36-
with:
37-
clojureRepo: ${{ inputs.clojureRepo }}
38-
clojureRef: ${{ inputs.clojureRef }}
39-
subjectRepo: 'ring-clojure/ring'
40-
subjectRef: 'master'
41-
javaVersion: '["11", "17", "21"]'
42-
43-
test-incomplete:
44-
uses: ./.github/workflows/lein-test.yml
45-
with:
46-
clojureRepo: ${{ inputs.clojureRepo }}
47-
clojureRef: ${{ inputs.clojureRef }}
48-
subjectRepo: 'nrepl/incomplete'
49-
subjectRef: 'main'
50-
51-
test-fressian:
52-
uses: ./.github/workflows/mvn-test.yml
53-
with:
54-
clojureRepo: ${{ inputs.clojureRepo }}
55-
clojureRef: ${{ inputs.clojureRef }}
56-
subjectRepo: 'Datomic/fressian'
57-
subjectRef: 'master'
58-
javaVersion: '["11", "17", "21"]'
59-
60-
test-pandect:
61-
uses: ./.github/workflows/lein-test.yml
62-
with:
63-
clojureRepo: ${{ inputs.clojureRepo }}
64-
clojureRef: ${{ inputs.clojureRef }}
65-
subjectRepo: 'xsc/pandect'
66-
subjectRef: 'main'
67-
68-
test-pedestal:
69-
uses: ./.github/workflows/deps-test.yml
70-
with:
71-
clojureRepo: ${{ inputs.clojureRepo }}
72-
clojureRef: ${{ inputs.clojureRef }}
73-
subjectRepo: 'pedestal/pedestal'
74-
subjectRef: 'master'
75-
setUpDir: './tests'
76-
setUpCmd: 'clojure -X:deps:local prep'
77-
testDir: './tests'
78-
testCmd: '-X:test'

.github/workflows/lein-test.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ on:
2525
required: false
2626
default: '["8", "11", "17", "21"]'
2727
type: string
28+
testCmd:
29+
description: "Command to invoke test run"
30+
type: string
31+
required: false
32+
default: 'lein test'
2833

2934
jobs:
3035
test:
@@ -80,4 +85,4 @@ jobs:
8085
cd /home/runner/work/test.regression/test.regression/subject-source
8186
lein deps
8287
sed -i.bak "s/\(org.clojure\/clojure\ \"[0-9\.]*\"\)/org.clojure\/clojure \"${{ env.LATEST_CLJ_BUILD }}\"/g" project.clj
83-
lein test
88+
${{ inputs.testCmd }}

0 commit comments

Comments
 (0)