mirror of
https://github.com/metosin/reitit.git
synced 2025-12-17 08:21:11 +00:00
Build against multiple JDKs
This commit is contained in:
parent
bdbe16a685
commit
c3650cf539
1 changed files with 12 additions and 2 deletions
|
|
@ -2,8 +2,11 @@ version: 2
|
||||||
jobs:
|
jobs:
|
||||||
test-clj:
|
test-clj:
|
||||||
working_directory: ~/test
|
working_directory: ~/test
|
||||||
|
parameters:
|
||||||
|
image:
|
||||||
|
type: string
|
||||||
docker:
|
docker:
|
||||||
- image: clojure:lein-2.7.1
|
- image: << parameters.image >>
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
|
|
@ -103,7 +106,14 @@ workflows:
|
||||||
version: 2
|
version: 2
|
||||||
test-and-build-docs:
|
test-and-build-docs:
|
||||||
jobs:
|
jobs:
|
||||||
- test-clj
|
- test-clj:
|
||||||
|
image: clojure:openjdk-8-lein-2.9.1
|
||||||
|
- test-clj:
|
||||||
|
image: clojure:openjdk-11-lein-2.9.1
|
||||||
|
- test-clj:
|
||||||
|
image: clojure:openjdk-13-lein-2.9.1
|
||||||
|
- test-clj:
|
||||||
|
image: clojure:openjdk-14-lein-2.9.1
|
||||||
- test-cljs
|
- test-cljs
|
||||||
# - build-docs:
|
# - build-docs:
|
||||||
# filters:
|
# filters:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue