Files
wolfssl/.github/workflows/curl.yml
2023-08-28 11:55:42 +02:00

31 lines
690 B
YAML

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 curl
uses: wolfSSL/actions-build-autotools-project@v1
with:
repository: curl/curl
path: curl
configure: --with-wolfssl=$GITHUB_WORKSPACE/build-dir
check: true