Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,15 +203,15 @@ jobs:
uses: actions/cache@v4
with:
path: curl-7.75.0
key: macos-latest-CURL-pre-built-v2
key: macos-latest-CURL-pre-built-v3

- name: Build curl (if not cached)
if: steps.cache-curl.outputs.cache-hit != 'true'
run: |
curl https://libhttpserver.s3.amazonaws.com/travis_stuff/curl-7.75.0.tar.gz -o curl-7.75.0.tar.gz
tar -xzf curl-7.75.0.tar.gz
cd curl-7.75.0
./configure --with-darwinssl --without-ssl
./configure --with-darwinssl --without-ssl --without-nghttp2 --without-libidn2 --without-libssh2 --without-brotli --without-zstd --without-librtmp --without-libpsl --disable-ldap --disable-ldaps
make

- name: Install curl
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/verify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -467,15 +467,15 @@ jobs:
uses: actions/cache@v4
with:
path: curl-7.75.0
key: ${{ matrix.os }}-CURL-pre-built-v2
key: ${{ matrix.os }}-CURL-pre-built-v3
if: ${{ matrix.os == 'macos-latest' }}

- name: Build CURL (for testing)
run: |
curl https://libhttpserver.s3.amazonaws.com/travis_stuff/curl-7.75.0.tar.gz -o curl-7.75.0.tar.gz ;
tar -xzf curl-7.75.0.tar.gz ;
cd curl-7.75.0 ;
./configure --with-darwinssl --without-ssl ;
./configure --with-darwinssl --without-ssl --without-nghttp2 --without-libidn2 --without-libssh2 --without-brotli --without-zstd --without-librtmp --without-libpsl --disable-ldap --disable-ldaps ;
make ;
if: ${{ matrix.os == 'macos-latest' && steps.cache-CURL.outputs.cache-hit != 'true' }}

Expand Down
Loading