]> git.ipfire.org Git - thirdparty/git.git/commitdiff
.github/workflows/main.yml: run static-analysis on bionic
authorTaylor Blau <me@ttaylorr.com>
Mon, 8 Feb 2021 21:22:34 +0000 (16:22 -0500)
committerJunio C Hamano <gitster@pobox.com>
Mon, 8 Feb 2021 22:38:07 +0000 (14:38 -0800)
GitHub Actions is transitioning workflow steps that run on
'ubuntu-latest' from 18.04 to 20.04 [1].

This works fine in all steps except the static-analysis one, since
Coccinelle isn't available on Ubuntu focal (it is only available in the
universe suite).

Until Coccinelle can be installed from 20.04's main suite, pin the
static-analysis build to run on 18.04, where it can be installed by
default.

[1]: https://github.com/actions/virtual-environments/issues/1816

Reported-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
.github/workflows/main.yml

index aef66436484af18fb91504f8c9701de7b25e7059..5341dbd6332d6c975f0a5fa9bdd24d6290c2f47e 100644 (file)
@@ -336,7 +336,7 @@ jobs:
     if: needs.ci-config.outputs.enabled == 'yes'
     env:
       jobname: StaticAnalysis
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-18.04
     steps:
     - uses: actions/checkout@v1
     - run: ci/install-dependencies.sh