* Update clojure CLI flags in script/test * Throw error when not one of version or path ...with qualified symbol pod-spec * Fix some minor formatting issues * Check for new error message in pod-registry test * Add a test for resolve fn in edn data readers * Add CI config * Try using clojure tools-deps image in CI * Check for new error message in sci pod-registry test * Use latest version of buddy in pod-registry test ...for more platform support * Stop depending on babashka Instead accept an arg for the thing we were getting from it (location of the bb.edn file) * Save maven deps in cache in CI
28 lines
No EOL
667 B
YAML
28 lines
No EOL
667 B
YAML
version: 2.1
|
|
jobs:
|
|
test:
|
|
docker:
|
|
- image: clojure:openjdk-11-tools-deps-1.10.3.1087-slim-bullseye
|
|
working_directory: ~/repo
|
|
environment:
|
|
LEIN_ROOT: "true"
|
|
BABASHKA_PLATFORM: linux
|
|
resource_class: large
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
keys:
|
|
- v1-dependencies-{{ checksum "deps.edn" }}
|
|
# fallback to using latest cache if no exact match is found
|
|
- v1-dependencies-
|
|
- run: |
|
|
script/test
|
|
- save_cache:
|
|
paths:
|
|
- ~/.m2
|
|
key: v1-dependencies-{{ checksum "deps.edn" }}
|
|
workflows:
|
|
version: 2
|
|
ci:
|
|
jobs:
|
|
- test |