diff options
author | David Robillard <d@drobilla.net> | 2019-04-21 21:48:03 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-04-21 21:48:03 +0200 |
commit | 2a4e05f99d0f35e6becd690e1d732122812e7929 (patch) | |
tree | 277fd58066ac56eb692c74f91466587cc43371b6 /.gitlab-ci.yml | |
parent | a6541d25a684564bb810c3b22536a0427e4442f9 (diff) | |
download | raul-2a4e05f99d0f35e6becd690e1d732122812e7929.tar.gz raul-2a4e05f99d0f35e6becd690e1d732122812e7929.tar.bz2 raul-2a4e05f99d0f35e6becd690e1d732122812e7929.zip |
Run verbose tests on CI
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b0a8c22..94cf810 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -31,7 +31,7 @@ arm32_dbg: test:arm32_dbg: <<: *test_definition image: lv2plugin/debian-arm32 - script: python ./waf test --wrapper=qemu-arm + script: python ./waf test -v -v --wrapper=qemu-arm dependencies: - arm32_dbg @@ -47,7 +47,7 @@ arm32_rel: test:arm32_rel: <<: *test_definition image: lv2plugin/debian-arm32 - script: python ./waf test --wrapper=qemu-arm + script: python ./waf test -v -v --wrapper=qemu-arm dependencies: - arm32_rel @@ -63,7 +63,7 @@ arm64_dbg: test:arm64_dbg: <<: *test_definition image: lv2plugin/debian-arm64 - script: python ./waf test --wrapper=qemu-aarch64 + script: python ./waf test -v -v --wrapper=qemu-aarch64 dependencies: - arm64_dbg @@ -79,7 +79,7 @@ arm64_rel: test:arm64_rel: <<: *test_definition image: lv2plugin/debian-arm64 - script: python ./waf test --wrapper=qemu-aarch64 + script: python ./waf test -v -v --wrapper=qemu-aarch64 dependencies: - arm64_rel @@ -92,7 +92,7 @@ x64_dbg: test:x64_dbg: <<: *test_definition image: lv2plugin/debian-x64 - script: python ./waf test + script: python ./waf test -v -v dependencies: - x64_dbg @@ -105,7 +105,7 @@ x64_rel: test:x64_rel: <<: *test_definition image: lv2plugin/debian-x64 - script: python ./waf test + script: python ./waf test -v -v dependencies: - x64_rel @@ -118,7 +118,7 @@ mac_dbg: test:mac_dbg: <<: *test_definition - script: python ./waf test + script: python ./waf test -v -v dependencies: - mac_dbg tags: @@ -133,7 +133,7 @@ mac_rel: test:mac_rel: <<: *test_definition - script: python ./waf test + script: python ./waf test -v -v dependencies: - mac_rel tags: @@ -149,7 +149,7 @@ win_dbg: test:win_dbg: <<: *test_definition - script: python ./waf test + script: python ./waf test -v -v dependencies: - win_dbg tags: @@ -164,7 +164,7 @@ win_rel: test:win_rel: <<: *test_definition - script: python ./waf test + script: python ./waf test -v -v dependencies: - win_rel tags: |