aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/unusedargs_missingreturn.yml
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2021-06-10 20:34:24 +0100
committerJon Turney <jon.turney@dronecode.org.uk>2021-07-13 15:18:32 +0100
commit24135c8c8e8980bebb58b592d38f1a4f1be81c50 (patch)
tree083f7e649427d1623ef5deaaf06ab2e1798e9914 /.github/workflows/unusedargs_missingreturn.yml
parenta10b0c93eb5d32ab8ba1301c26bde2d98b556a29 (diff)
downloadmeson-24135c8c8e8980bebb58b592d38f1a4f1be81c50.zip
meson-24135c8c8e8980bebb58b592d38f1a4f1be81c50.tar.gz
meson-24135c8c8e8980bebb58b592d38f1a4f1be81c50.tar.bz2
Set MESON_CI_JOBNAME for all CI jobs
Set MESON_CI_JOBNAME for all CI jobs which run project tests. (Note that ${{ github.job }} is the literal job.id used in the yaml, not any name given to the job with job.id.name, and so is the same for all matrix entries, and thus not suitable for our purposes there).
Diffstat (limited to '.github/workflows/unusedargs_missingreturn.yml')
-rw-r--r--.github/workflows/unusedargs_missingreturn.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/unusedargs_missingreturn.yml b/.github/workflows/unusedargs_missingreturn.yml
index 8e6e42d..7b4379b 100644
--- a/.github/workflows/unusedargs_missingreturn.yml
+++ b/.github/workflows/unusedargs_missingreturn.yml
@@ -47,6 +47,8 @@ jobs:
sudo apt install -yq --no-install-recommends g++ gfortran ninja-build gobjc gobjc++
python -m pip install coverage codecov
- run: ./tools/run_with_cov.py run_project_tests.py --only cmake common fortran platform-linux "objective c" "objective c++"
+ env:
+ MESON_CI_JOBNAME: linux-ubuntu-gcc-werror
- name: Upload coverage report
run: ./ci/upload_cov.sh "UnusedMissingReturn"
@@ -65,6 +67,7 @@ jobs:
CC: gcc
CXX: g++
FC: gfortran
+ MESON_CI_JOBNAME: msys2-gcc-werror
- name: Upload coverage report
run: ./ci/upload_cov.sh "UnusedMissingReturn Windows"