ci: Add examples to CI testing

This commit is contained in:
Heikki Tampio 2023-01-30 13:48:49 +02:00
parent ba9da4c331
commit 0166a3ce38
1 changed files with 26 additions and 1 deletions

View File

@ -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