]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Sync with 2.32.7
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Sat, 11 Mar 2023 19:29:32 +0000 (20:29 +0100)
committerJohannes Schindelin <johannes.schindelin@gmx.de>
Mon, 17 Apr 2023 19:15:52 +0000 (21:15 +0200)
* maint-2.32: (26 commits)
  Git 2.32.7
  Git 2.31.8
  tests: avoid using `test_i18ncmp`
  Git 2.30.9
  gettext: avoid using gettext if the locale dir is not present
  apply --reject: overwrite existing `.rej` symlink if it exists
  http.c: clear the 'finished' member once we are done with it
  clone.c: avoid "exceeds maximum object size" error with GCC v12.x
  range-diff: use ssize_t for parsed "len" in read_patches()
  range-diff: handle unterminated lines in read_patches()
  range-diff: drop useless "offset" variable from read_patches()
  t5604: GETTEXT_POISON fix, conclusion
  t5604: GETTEXT_POISON fix, part 1
  t5619: GETTEXT_POISON fix
  t0003: GETTEXT_POISON fix, conclusion
  t0003: GETTEXT_POISON fix, part 1
  t0033: GETTEXT_POISON fix
  http: support CURLOPT_PROTOCOLS_STR
  http: prefer CURLOPT_SEEKFUNCTION to CURLOPT_IOCTLFUNCTION
  http-push: prefer CURLOPT_UPLOAD to CURLOPT_PUT
  ci: install python on ubuntu
  ...

1  2 
.github/workflows/main.yml
apply.c
builtin/clone.c
ci/install-dependencies.sh
ci/lib.sh
config.c
gettext.c
http.c
remote-curl.c

index b053b01c66e93ea065357bf69b6742cfcab318b7,158be9a83ae3e47e30f275c643812f60e29745fa..9f99e59a7cc21e6ff750691569f7f6bcf8758240
@@@ -282,31 -345,11 +282,31 @@@ jobs
      if: needs.ci-config.outputs.enabled == 'yes'
      env:
        jobname: StaticAnalysis
-     runs-on: ubuntu-18.04
+     runs-on: ubuntu-22.04
      steps:
 -    - uses: actions/checkout@v1
 +    - uses: actions/checkout@v2
      - run: ci/install-dependencies.sh
      - run: ci/run-static-analysis.sh
 +  sparse:
 +    needs: ci-config
 +    if: needs.ci-config.outputs.enabled == 'yes'
 +    env:
 +      jobname: sparse
 +    runs-on: ubuntu-20.04
 +    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@v2
 +    - name: Install other dependencies
 +      run: ci/install-dependencies.sh
 +    - run: make sparse
    documentation:
      needs: ci-config
      if: needs.ci-config.outputs.enabled == 'yes'
diff --cc apply.c
Simple merge
diff --cc builtin/clone.c
Simple merge
Simple merge
diff --cc ci/lib.sh
Simple merge
diff --cc config.c
Simple merge
diff --cc gettext.c
Simple merge
diff --cc http.c
Simple merge
diff --cc remote-curl.c
Simple merge