From fb8eb227382679164d0ed1598446a3f8f25965cf Mon Sep 17 00:00:00 2001 From: Kim Kinnear Date: Mon, 11 Mar 2024 14:48:03 -0400 Subject: [PATCH] Update testconfig in workflows. --- .github/workflows/main-branch.yml | 8 ++++---- .github/workflows/pull-request.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main-branch.yml b/.github/workflows/main-branch.yml index 5d24733..e2b3ae4 100644 --- a/.github/workflows/main-branch.yml +++ b/.github/workflows/main-branch.yml @@ -89,7 +89,7 @@ jobs: - name: Setup Babashka uses: zharinov/clj-toolbox@v1.0.0 with: - babashka: "0.9.161" + babashka: "1.3.184" - name: Download artifacts uses: actions/download-artifact@v3.0.0 @@ -104,7 +104,7 @@ jobs: - run: chmod +x zprintl-${{ steps.version.outputs.zprint }} - name: Run tests - run: ./test_config ${{ steps.version.outputs.zprint }} graalvm-linux + run: bb testconfig:bb -v ${{ steps.version.outputs.zprint }} -s graalvm-linux test-clj: needs: build-jar @@ -144,7 +144,7 @@ jobs: - name: Setup Clojure uses: zharinov/clj-toolbox@v1.0.0 with: - babashka: "0.9.161" + babashka: "1.3.184" - name: Download artifacts uses: actions/download-artifact@v3.0.0 @@ -153,7 +153,7 @@ jobs: path: target/ - name: Run tests - run: ./test_config ${{ steps.version.outputs.zprint }} uberjar + run: bb testconfig:bb -v ${{ steps.version.outputs.zprint }} -s uberjar test-cljs: runs-on: macos-latest diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 3c2bd80..8bb11dd 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -85,7 +85,7 @@ jobs: - name: Setup Babashka uses: zharinov/clj-toolbox@v1.0.0 with: - babashka: "0.9.161" + babashka: "1.3.184" - name: Download artifacts uses: actions/download-artifact@v3.0.0 @@ -100,7 +100,7 @@ jobs: - run: chmod +x zprintl-${{ steps.version.outputs.zprint }} - name: Run tests - run: ./test_config ${{ steps.version.outputs.zprint }} graalvm-linux + run: bb testconfig:bb -v ${{ steps.version.outputs.zprint }} -s graalvm-linux test-clj: needs: build-jar @@ -140,7 +140,7 @@ jobs: - name: Setup Clojure uses: zharinov/clj-toolbox@v1.0.0 with: - babashka: "0.9.161" + babashka: "1.3.184" - name: Download artifacts uses: actions/download-artifact@v3.0.0 @@ -149,4 +149,4 @@ jobs: path: target/ - name: Run tests - run: ./test_config ${{ steps.version.outputs.zprint }} uberjar + run: bb testconfig:bb -v ${{ steps.version.outputs.zprint }} -s uberjar