diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-04-24 17:13:30 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-04-24 17:13:30 -0700 |
| commit | 8829bbfba1dcb1de328319f9bc75a0b5322fe0b6 (patch) | |
| tree | 73cd0b94a26a2aa3e6cd4db0673c5d2b99f41dfd | |
| parent | Merge branch 'dd/sparse-glibc-workaround' into maint-2.49 (diff) | |
| parent | ci: upgrade `sparse` to supported build agents (diff) | |
| download | git-8829bbfba1dcb1de328319f9bc75a0b5322fe0b6.tar.gz git-8829bbfba1dcb1de328319f9bc75a0b5322fe0b6.zip | |
Merge branch 'js/ci-github-update-ubuntu' into maint-2.49
Adjust to the deprecation of use of Ubuntu 20.04 GitHub Actions CI.
* js/ci-github-update-ubuntu:
ci: upgrade `sparse` to supported build agents
Diffstat (limited to '')
| -rw-r--r-- | .github/workflows/main.yml | 11 | ||||
| -rwxr-xr-x | ci/install-dependencies.sh | 2 |
2 files changed, 2 insertions, 11 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9959b61ece..1c8260ecb6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -446,20 +446,11 @@ jobs: if: needs.ci-config.outputs.enabled == 'yes' env: jobname: sparse - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 concurrency: group: sparse-${{ github.ref }} cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }} steps: - - name: Download a current `sparse` package - # Ubuntu's `sparse` version is too old for us - uses: git-for-windows/get-azure-pipelines-artifact@v0 - with: - repository: git/git - definitionId: 10 - artifact: sparse-20.04 - - name: Install the current `sparse` package - run: sudo dpkg -i sparse-20.04/sparse_*.deb - uses: actions/checkout@v4 - name: Install other dependencies run: ci/install-dependencies.sh diff --git a/ci/install-dependencies.sh b/ci/install-dependencies.sh index 0df74610d0..8700c0f292 100755 --- a/ci/install-dependencies.sh +++ b/ci/install-dependencies.sh @@ -119,7 +119,7 @@ StaticAnalysis) sparse) sudo apt-get -q update -q sudo apt-get -q -y install libssl-dev libcurl4-openssl-dev \ - libexpat-dev gettext zlib1g-dev + libexpat-dev gettext zlib1g-dev sparse ;; Documentation) sudo apt-get -q update |
