GHA: build tests in a separate step from the running of them

... to make the output smaller for when you want to look at test
failures.

Removed the examples build from msh3

Closes #9619
This commit is contained in:
Daniel Stenberg 2022-09-29 12:26:04 +02:00
parent e7cf6fea7f
commit 0a652280c9
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
8 changed files with 31 additions and 10 deletions

View file

@ -54,7 +54,10 @@ jobs:
- run: make V=1
name: 'make'
- run: make V=1 -C tests
name: 'make tests'
- run: make V=1 test-torture
name: 'test'
name: 'run tests'
env:
TFLAGS: "${{ matrix.build.tflags }}"