Skip to content

Update verify-build.yml #338

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
Loading