From 48f9ee46cfc5b7a9e332bfbbce2228e09b93dd97 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Fri, 12 Jun 2026 18:05:57 -0400 Subject: [PATCH] Pin CI steps that use bashisms to bash --- .gitea/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8317cd5..3f4d268 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -176,6 +176,7 @@ jobs: - name: Upload artifacts to MinIO if: always() + shell: bash env: MINIO_ACCESS_KEY: ${{ secrets.MINIO_ACCESS_KEY }} MC_HOST_minio: https://${{ secrets.MINIO_ACCESS_KEY }}:${{ secrets.MINIO_SECRET_KEY }}@minio.weaselab.dev @@ -241,6 +242,7 @@ jobs: ctest --no-compress-output --test-output-size-passed 100000 --test-output-size-failed 100000 -T Test -j "$(nproc)" --timeout 90 > /dev/null - name: Coverage report + shell: bash run: | gcov_args=(-f ConflictSet.cpp -f LongestCommonPrefix.h -f Metrics.h --gcov-executable "llvm-cov gcov" --exclude-noncode-lines)