Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update verify-build.yml #338

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
--darwin-ssl does not exist anymore.
Update to use new option --with-secure-transport
  • Loading branch information
etr authored Jul 2, 2024
commit 973fac44c96ab8335f67de9ef6057fc4e151b077
2 changes: 1 addition & 1 deletion .github/workflows/verify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ jobs:
curl https://libhttpserver.s3.amazonaws.com/travis_stuff/curl-8.8.0.tar -o curl-8.8.0.tar ;
tar -xzf curl-8.8.0.tar ;
cd curl-8.8.0 ;
if [ "$matrix.os-type" = "ubuntu" ]; then ./configure ; else ./configure --with-darwinssl ; fi
if [ "$matrix.os-type" = "ubuntu" ]; then ./configure ; else ./configure --with-secure-transport ; fi
make ;
if: ${{ matrix.os == 'macos-latest' && steps.cache-CURL.outputs.cache-hit != 'true' }}

Expand Down
Loading