summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2021-07-26 18:22:27 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-07-26 22:20:51 (GMT)
commit27f45ccf336d70e9078075eb963fb92541da8690 (patch)
treed18ce711042f392dbe1dad55cd215478726aef72 /.github
parent8231c841ff7f213a86aa1fa890ea213f2dc630be (diff)
downloadgit-27f45ccf336d70e9078075eb963fb92541da8690.zip
git-27f45ccf336d70e9078075eb963fb92541da8690.tar.gz
git-27f45ccf336d70e9078075eb963fb92541da8690.tar.bz2
ci/install-dependencies: handle "sparse" job package installs
This just matches the style/location of the package installation for other jobs. There should be no functional change. I did flip the order of the options and command-name ("-y update" instead of "update -y") for consistency with other lines in the same file. Note also that we have to reorder the dependency install with the "checkout" action, so that we actually have the "ci" scripts available. Signed-off-by: Jeff King <peff@peff.net> Acked-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 0187888..224c46b 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -366,11 +366,9 @@ jobs:
artifact: sparse-20.04
- name: Install the current `sparse` package
run: sudo dpkg -i sparse-20.04/sparse_*.deb
- - name: Install other dependencies
- run: |
- sudo apt-get update -q &&
- sudo apt-get install -q -y libssl-dev libcurl4-openssl-dev libexpat-dev gettext zlib1g-dev
- uses: actions/checkout@v2
+ - name: Install other dependencies
+ run: ci/install-dependencies.sh
- run: make sparse
documentation:
needs: ci-config