From c3004110f47208a7739e93e075aac5597cfa3f04 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Tue, 12 Jan 2021 19:12:23 +0100 Subject: [PATCH] gh-actions: ci: fix coverage CFLAGS --- .github/workflows/ci.yml | 12 ++++++------ scripts/gen_github_workflow_ci.php | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57b6d96..5e56d83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -224,8 +224,8 @@ jobs: cur-cov-0: name: cur-cov-0 env: - CFLAGS: "'-O0 -g --coverage'" - CXXFLAGS: "'-O0 -g --coverage'" + CFLAGS: "-O0 -g --coverage" + CXXFLAGS: "-O0 -g --coverage" PHP: "8.0" enable_iconv: "yes" with_http_libicu_dir: "yes" @@ -267,8 +267,8 @@ jobs: cur-cov-1: name: cur-cov-1 env: - CFLAGS: "'-O0 -g --coverage'" - CXXFLAGS: "'-O0 -g --coverage'" + CFLAGS: "-O0 -g --coverage" + CXXFLAGS: "-O0 -g --coverage" PHP: "8.0" enable_iconv: "yes" with_http_libicu_dir: "no" @@ -310,8 +310,8 @@ jobs: cur-cov-2: name: cur-cov-2 env: - CFLAGS: "'-O0 -g --coverage'" - CXXFLAGS: "'-O0 -g --coverage'" + CFLAGS: "-O0 -g --coverage" + CXXFLAGS: "-O0 -g --coverage" PHP: "8.0" enable_iconv: "yes" with_http_libicu_dir: "no" diff --git a/scripts/gen_github_workflow_ci.php b/scripts/gen_github_workflow_ci.php index 9e561ce..7cbbdfb 100755 --- a/scripts/gen_github_workflow_ci.php +++ b/scripts/gen_github_workflow_ci.php @@ -39,8 +39,8 @@ $job = $gen->github([ ], "cur-cov" => [ // once everything enabled for current, with coverage - "CFLAGS" => "'-O0 -g --coverage'", - "CXXFLAGS" => "'-O0 -g --coverage'", + "CFLAGS" => "-O0 -g --coverage", + "CXXFLAGS" => "-O0 -g --coverage", "PHP" => $cur, "enable_iconv" => "yes", [ -- 2.30.2