123456789101112131415161718192021222324252627282930 |
- name: curl Test
- on:
- workflow_call:
- jobs:
- build:
- runs-on: ubuntu-latest
- # This should be a safe limit for the tests to run.
- timeout-minutes: 14
- steps:
- - name: Install test dependencies
- run: |
- sudo apt-get update
- sudo apt-get install nghttp2
- - name: Build wolfSSL
- uses: wolfSSL/actions-build-autotools-project@v1
- with:
- path: wolfssl
- configure: --enable-curl
- install: true
- - name: Build and test stunnel
- uses: wolfSSL/actions-build-autotools-project@v1
- with:
- repository: curl/curl
- path: curl
- configure: --with-wolfssl=$GITHUB_WORKSPACE/build-dir
- check: true
|