From cb912219e4f0666d1d58a712d6173aec3f27cd3e Mon Sep 17 00:00:00 2001 From: Juliusz Sosinowicz Date: Tue, 10 Oct 2023 14:19:03 +0200 Subject: [PATCH] Run only stable curl tests --- .github/workflows/curl.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/curl.yml b/.github/workflows/curl.yml index e447571e2..009deb599 100644 --- a/.github/workflows/curl.yml +++ b/.github/workflows/curl.yml @@ -4,7 +4,7 @@ on: workflow_call: jobs: - build: + build-and-test: runs-on: ubuntu-latest # This should be a safe limit for the tests to run. timeout-minutes: 14 @@ -22,10 +22,14 @@ jobs: configure: --enable-curl install: true - - name: Build and test curl + - name: Build curl uses: wolfSSL/actions-build-autotools-project@v1 with: repository: curl/curl path: curl configure: --with-wolfssl=$GITHUB_WORKSPACE/build-dir - check: true + check: false + + - name: Test curl + working-directory: curl + run: make -j test-ci