Skip to content
Open
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
16 changes: 8 additions & 8 deletions .github/workflows/verify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -339,25 +339,25 @@ jobs:
sudo make install ;
if: ${{ matrix.build-type == 'iwyu' && matrix.os-type == 'ubuntu' }}

- name: CURL from cache (for testing)
- name: CURL from cache (for testing on mac)
id: cache-CURL
uses: actions/cache@v2
with:
path: curl-7.75.0
path: curl-8.8.0
key: ${{ matrix.os }}-CURL-pre-built
if: ${{ matrix.os == 'macos-latest' }}

- name: Build CURL (for testing)
- name: Build CURL (for testing on mac)
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 ;
if [ "$matrix.os-type" = "ubuntu" ]; then ./configure ; else ./configure --with-darwinssl ; fi
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-secure-transport ; fi
make ;
if: ${{ matrix.os == 'macos-latest' && steps.cache-CURL.outputs.cache-hit != 'true' }}

- name: Install CURL (for testing on mac only)
run: cd curl-7.75.0 ; sudo make install ;
run: cd curl-8.8.0 ; sudo make install ;
if: ${{ matrix.os == 'macos-latest' }}

- name: Install CURL (for testing on linux)
Expand Down