diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index 06aff1f..42ec8f1 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -25,6 +25,7 @@ jobs: with: path: | ~/.m2/repository + ~/.gitlibs ~/.clojure ~/.cpcache key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }} @@ -32,8 +33,6 @@ jobs: run: docker compose up -d env: MYSQL_ROOT_PASSWORD: testing - - name: Prep libs - run: clojure -X:deps prep :aliases '[:test]' - name: Run MariaDB Tests run: clojure -M:test:runner env: diff --git a/.github/workflows/test-and-snapshot.yml b/.github/workflows/test-and-snapshot.yml index e9353b1..1fb8be7 100644 --- a/.github/workflows/test-and-snapshot.yml +++ b/.github/workflows/test-and-snapshot.yml @@ -23,6 +23,7 @@ jobs: with: path: | ~/.m2/repository + ~/.gitlibs ~/.clojure ~/.cpcache key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }} @@ -30,8 +31,6 @@ jobs: run: docker compose up -d env: MYSQL_ROOT_PASSWORD: testing - - name: Prep libs - run: clojure -X:deps prep :aliases '[:test]' - name: Run MariaDB Tests run: clojure -M:test:runner env: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 179dd61..712c646 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,6 +23,7 @@ jobs: with: path: | ~/.m2/repository + ~/.gitlibs ~/.clojure ~/.cpcache key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }} @@ -30,8 +31,6 @@ jobs: run: docker compose up -d env: MYSQL_ROOT_PASSWORD: testing - - name: Prep libs - run: clojure -X:deps prep :aliases '[:test]' - name: Run MariaDB Tests run: clojure -M:test:runner env: diff --git a/run-tests.clj b/run-tests.clj index 36037f8..4d37d2c 100755 --- a/run-tests.clj +++ b/run-tests.clj @@ -23,6 +23,5 @@ (assoc "NEXT_JDBC_TEST_MARIADB" "yes") xtdb? (assoc "NEXT_JDBC_TEST_XTDB" "yes"))] - (p/shell "clojure" "-X:deps" "prep" ":aliases" "[:test]") (doseq [v (if all? ["1.10" "1.11" "1.12"] [nil])] (run-tests env v)))