From: Viktor Szakats Date: Thu, 5 Sep 2024 10:05:02 +0000 (+0200) Subject: GHA/linux-old: split test step into build and run X-Git-Tag: curl-8_10_0~40 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6aa5f25c6490e2dcc8acb1528e65d3d19cc1c4fb;p=thirdparty%2Fcurl.git GHA/linux-old: split test step into build and run To see how much time each takes. Closes #14791 --- diff --git a/.github/workflows/linux-old.yml b/.github/workflows/linux-old.yml index c90ac4d107..ce5d232958 100644 --- a/.github/workflows/linux-old.yml +++ b/.github/workflows/linux-old.yml @@ -102,5 +102,8 @@ jobs: - name: 'install' run: make -C bld-cares install - - name: 'tests' + - name: 'build tests' + run: make -C bld-cares testdeps + + - name: 'run tests' run: make -C bld-cares test-ci