32 lines
701 B
YAML
32 lines
701 B
YAML
name: curl Test
|
|
|
|
on:
|
|
push:
|
|
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
|