summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2023-04-17 19:47:45 -0400
committerNirbheek Chauhan <nirbheek@centricular.com>2023-04-21 13:29:15 +0530
commita258488948c57f2f7cac860cb89b4c7ee7c0d667 (patch)
tree0c58f64907c84ae673faf6aaab970cd309876cb4
parent34f9d61ba5e897fe454da3deb08a92d914207bed (diff)
downloadmeson-a258488948c57f2f7cac860cb89b4c7ee7c0d667.tar.gz
CI: cygwin coverage uploader needs to run in bash too
Like every single other command in the entire workflow, and for the same reasons. ;)
-rw-r--r--.github/workflows/cygwin.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml
index 5b1cd95ec..08da3bf04 100644
--- a/.github/workflows/cygwin.yml
+++ b/.github/workflows/cygwin.yml
@@ -104,4 +104,7 @@ jobs:
if: ${{ !cancelled() }}
- name: Upload coverage report
- run: ./ci/upload_cov.sh "${{ matrix.NAME }}"
+ run: |
+ export PATH=/usr/bin:/usr/local/bin:$(cygpath ${SYSTEMROOT})/system32
+ ./ci/upload_cov.sh "${{ matrix.NAME }}"
+ shell: C:\cygwin\bin\bash.exe --noprofile --norc -o igncr -eo pipefail '{0}'