Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Asteborg <maastebo@microsoft.com>2023-05-31 07:13:51 +0300
committerJean-Marc Valin <jmvalin@amazon.com>2023-06-01 21:34:25 +0300
commit7633e6cead4d98d973e47562ab6ef7b6b1567edc (patch)
treec34762031e86ebd03c4caadb359e07f2bdd2c7ff
parent146296f00f740a65972395baf3b69ff7b6a60dee (diff)
add neural fec to cmake in gitlab ci
Signed-off-by: Marcus Asteborg <maastebo@microsoft.com> Signed-off-by: Jean-Marc Valin <jmvalin@amazon.com>
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 17c16e70..c4a70f5e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -39,9 +39,9 @@ cmake:
script:
- ./autogen.sh
- mkdir build
- - cmake -S . -B build -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DOPUS_BUILD_TESTING=ON -DOPUS_BUILD_PROGRAMS=ON
- - cmake --build build
- - cd build && ctest --output-on-failure
+ - cmake -S . -B build -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DOPUS_BUILD_TESTING=ON -DOPUS_BUILD_PROGRAMS=ON -DOPUS_NEURAL_FEC=ON
+ - cmake --build build -j 4
+ - cd build && ctest --output-on-failure -j 4
meson:
stage: build