From: Daniel Stenberg Date: Tue, 3 Dec 2019 18:30:08 +0000 (+0100) Subject: github action/azure pipeline: run 'make test-nonflaky' for tests X-Git-Tag: curl-7_68_0~110 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ab712afa8fb9d2bf7850aa8d031937ca515efa01;p=thirdparty%2Fcurl.git github action/azure pipeline: run 'make test-nonflaky' for tests To match travis and give more info on failures. --- diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 12f90a6a85..5e3162cc83 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -16,5 +16,5 @@ steps: - script: make displayName: 'make' -- script: make check +- script: make test-nonflaky displayName: 'test' diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml index 9f3b87eb5d..94eb070d5e 100644 --- a/.github/workflows/cpp.yml +++ b/.github/workflows/cpp.yml @@ -14,4 +14,4 @@ jobs: - name: make run: make - name: make check - run: make check + run: make test-nonflaky