aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2023-04-17 19:47:45 -0400
committerEli Schwartz <eschwartz@archlinux.org>2023-04-17 21:19:07 -0400
commit4cd4f987708d5444a1cf59be14f2774b9f35f940 (patch)
tree1757e1e6f6ed523e19e11df0bba068f799627389 /.github/workflows
parent8d2a9e6e5c10f5e6c45d7954a063d015cb33bf8c (diff)
downloadmeson-4cd4f987708d5444a1cf59be14f2774b9f35f940.zip
meson-4cd4f987708d5444a1cf59be14f2774b9f35f940.tar.gz
meson-4cd4f987708d5444a1cf59be14f2774b9f35f940.tar.bz2
CI: cygwin coverage uploader needs to run in bash too
Like every single other command in the entire workflow, and for the same reasons. ;)
Diffstat (limited to '.github/workflows')
-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 5b1cd95..08da3bf 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}'