Skip to content

Commit

Permalink
231227.014251.HKT try setting http.postBuffer
Browse files Browse the repository at this point in the history
  • Loading branch information
zaikunzhang committed Dec 26, 2023
1 parent 20d2c17 commit 317a09d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ jobs:

steps:

- name: Set http.postBuffer
if: ${{ matrix.os == 'windows-latest' }}
run: git config --global http.postBuffer 1048576000

- name: Clone Repository (Latest)
uses: actions/checkout@v4
if: github.event.inputs.git-ref == ''
Expand Down Expand Up @@ -111,7 +115,7 @@ jobs:
# that are compiled with gcc11 try to use libgfortran-5.dll from gcc12 and crash. For now we rename the gcc12 version
# of libgfortran-5.dll so that the programs pick up the correct version in chocolatey/bin
- name: Move libgfortran-5.dll for gcc11 windows
if: ${{ matrix.os == 'windows-latest' && matrix.toolchain.compiler == 'gcc' && matrix.toolchain.version == '11' }}
if: ${{ matrix.os == 'windows-latest' && matrix.toolchain.compiler == 'gcc' && matrix.toolchain.version == '11' }}
run: mv /c/mingw64/bin/libgfortran-5.dll /c/mingw64/bin/libgfortran-5.dll.old
shell: bash

Expand Down

0 comments on commit 317a09d

Please sign in to comment.