summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorlhchavez <[email protected]>2020-12-06 06:13:38 -0800
committerGitHub <[email protected]>2020-12-06 06:13:38 -0800
commit54afccfa0f5a5574525cbba3b4568cbda252a3df (patch)
treeb0234aaf89bb7c0fd791f98244507b74e1000da3 /.github
parent5d8eaf7e65c404a0d10d3705697dd99369630dda (diff)
Build improvements (#707)
This change makes the test be verbose and use parallelization if possible (when using gmake to build).
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 047cb4a..d326170 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -40,7 +40,7 @@ jobs:
- name: Test
env:
GOPATH: /home/runner/work/git2go
- run: make test-static
+ run: make TEST_ARGS=-test.v test-static
build-static:
strategy:
@@ -64,7 +64,7 @@ jobs:
git submodule update --init
make build-libgit2-static
- name: Test
- run: make test-static
+ run: make TEST_ARGS=-test.v test-static
build-dynamic:
strategy:
@@ -86,7 +86,7 @@ jobs:
git submodule update --init
make build-libgit2-dynamic
- name: Test
- run: make test-dynamic
+ run: make TEST_ARGS=-test.v test-dynamic
build-system-dynamic:
strategy:
@@ -110,7 +110,7 @@ jobs:
git submodule update --init
sudo env BUILD_LIBGIT_REF=v${{ matrix.libgit2 }} ./script/build-libgit2.sh --dynamic --system
- name: Test
- run: make test
+ run: make TEST_ARGS=-test.v test
build-system-static:
strategy: