From 1156ae7dca6515b386fda6c4f63b9326db1ed6b0 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Thu, 8 Sep 2022 14:44:58 +0200 Subject: 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). --- .github/workflows/coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v1.2.1