summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sebastian@pipping.org>2022-09-08 14:44:58 +0200
committerSebastian Pipping <sebastian@pipping.org>2022-09-09 01:53:05 +0200
commit1156ae7dca6515b386fda6c4f63b9326db1ed6b0 (patch)
tree612d763762e688351df16188d47c04fab539d03a
parent003ac7403f3664e788b6e758fbc21bde146de789 (diff)
downloadlibexpat-git-1156ae7dca6515b386fda6c4f63b9326db1ed6b0.tar.gz
GitHub Actions: Avoid Ubuntu 20.04 for coverage collection
.. because its MinGW GCC 9.3.0 fails to create any .gcda files at test runtime (while that works just fine on 18.04 and 22.04).
-rw-r--r--.github/workflows/coverage.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 76e4aede..542898ea 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -38,7 +38,7 @@ on:
jobs:
checks:
name: Collect test coverage
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
env:
CFLAGS: -g3 -pipe
steps: