CI: enable parallel make in more builds

Most CI services provide at least two cores, so enable parallel make
jobs to take advantage of that for builds. Some dependencies aren't safe
to build in parallel so leave those as-is.  Also, rename a few
workflows to eliminate duplicate names and provide a better idea what
they're about.
This commit is contained in:
Dan Fandrich 2023-06-23 12:51:41 -07:00
parent cfab581041
commit fb802b521a
10 changed files with 43 additions and 21 deletions

View file

@ -122,12 +122,12 @@ commands:
build:
steps:
- run: make V=1
- run: make V=1 examples
- run: make -j3 V=1
- run: make -j3 V=1 examples
test:
steps:
- run: make V=1 test-ci
- run: make -j3 V=1 test-ci
executors:
ubuntu: