aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2025-01-31 18:30:15 -0500
committerJunio C Hamano <gitster@pobox.com>2025-02-03 09:24:42 -0800
commit14ddc393b17e80036485f69495006b18716c1863 (patch)
tree14c370fc36f45732af444f2f4fdfdf2cab867043
parentMerge branch 'ps/ci-misc-updates' into jk/ci-coverity-update (diff)
downloadgit-14ddc393b17e80036485f69495006b18716c1863.tar.gz
git-14ddc393b17e80036485f69495006b18716c1863.zip
ci: set CI_JOB_IMAGE for coverity job
The main GitHub Actions workflow switched away from the "$distro" variable in b133d3071a (github: simplify computation of the job's distro, 2025-01-10). Since the Coverity job also depends on our ci/install-dependencies.sh script, it needs to likewise set CI_JOB_IMAGE to find the correct dependencies (without this patch, we don't install curl and the build fails). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--.github/workflows/coverity.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml
index 48341e81f4..124301dbbe 100644
--- a/.github/workflows/coverity.yml
+++ b/.github/workflows/coverity.yml
@@ -45,7 +45,7 @@ jobs:
- run: ci/install-dependencies.sh
if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
env:
- distro: ${{ matrix.os }}
+ CI_JOB_IMAGE: ${{ matrix.os }}
# The Coverity site says the tool is usually updated twice yearly, so the
# MD5 of download can be used to determine whether there's been an update.