From 9fdc24eab75df1d7d2bb3185d370a3d584399a49 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Mon, 10 Mar 2025 10:15:42 -0700 Subject: [PATCH] remove prep lib; restore gitlibs cache Signed-off-by: Sean Corfield --- .github/workflows/test-and-release.yml | 3 +-- .github/workflows/test-and-snapshot.yml | 3 +-- .github/workflows/test.yml | 3 +-- run-tests.clj | 1 - 4 files changed, 3 insertions(+), 7 deletions(-) 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)))