ci: Add examples to CI testing
This commit is contained in:
parent
ba9da4c331
commit
0166a3ce38
|
@ -24,7 +24,7 @@ build_with_crypto:
|
|||
- bin/uvgrtp
|
||||
expire_in: 1 week
|
||||
|
||||
unit_tests:
|
||||
tests_with_crypto:
|
||||
stage: test
|
||||
script:
|
||||
- mkdir build && cd build
|
||||
|
@ -38,3 +38,28 @@ unit_tests:
|
|||
paths:
|
||||
- bin/uvgrtp
|
||||
expire_in: 1 week
|
||||
|
||||
examples_with_crypto:
|
||||
stage: test
|
||||
script:
|
||||
- mkdir build && cd build
|
||||
- apt -y install libcrypto++-dev
|
||||
- cmake ..
|
||||
- make
|
||||
- cd examples
|
||||
- make
|
||||
- ./binding
|
||||
- ./configuration
|
||||
- ./custom_timestamps
|
||||
- ./receiving_hook
|
||||
- ./receiving_poll
|
||||
- ./rtcp_hook
|
||||
- ./sending
|
||||
- ./sending_generic
|
||||
- ./srtp_user
|
||||
- ./zrtp_multistream
|
||||
|
||||
artifacts:
|
||||
paths:
|
||||
- bin/uvgrtp
|
||||
expire_in: 1 week
|
||||
|
|
Loading…
Reference in New Issue