Skip to content

Commit

Permalink
ci: add testing with crypto++
Browse files Browse the repository at this point in the history
  • Loading branch information
tampsa committed Jan 30, 2023
1 parent 6547155 commit ba9da4c
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,33 @@ image: ultravideo/kvazaar_ci_base:latest

# build without crypto
build_no_crypto:
stage: build
script:
- mkdir build && cd build
- cmake ..
- make
artifacts:
paths:
- bin/uvgrtp
expire_in: 1 week

build_with_crypto:
stage: build
script:
- mkdir build && cd build
- apt -y install libcrypto++-dev
- cmake ..
- make
artifacts:
paths:
- bin/uvgrtp
expire_in: 1 week

unit_tests:
stage: test
script:
- mkdir build && cd build
- apt -y install libcrypto++-dev
- cmake ..
- make
- cd test
Expand All @@ -14,4 +38,3 @@ build_no_crypto:
paths:
- bin/uvgrtp
expire_in: 1 week

0 comments on commit ba9da4c

Please sign in to comment.