Skip to content

Commit

Permalink
ci: Add examples to CI testing
Browse files Browse the repository at this point in the history
  • Loading branch information
tampsa committed Jan 30, 2023
1 parent ba9da4c commit 0166a3c
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 0166a3c

Please sign in to comment.