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

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoïc Le Page <llepage@igalia.com>2022-10-18 19:46:35 +0300
committerLoïc Le Page <llepage@igalia.com>2023-04-04 17:29:44 +0300
commitf17622a1e1de8a4f8818e0cbfe5bc864b5d6a340 (patch)
tree17b85906171b33f6910e2b50d92d6195c50058b6 /.gitlab-ci.yml
parent8845f6a4c6b8f2d3b6a0529aedb70203e28a5508 (diff)
webrtc: Add gstwebrtc-api subproject in net/webrtc plugin
This subproject adds a high-level web API compatible with GStreamer webrtcsrc and webrtcsink elements and the corresponding signaling server. It allows a perfect bidirectional communication between HTML5 WebRTC API and native GStreamer. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/946>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1defc9c59..d1caf8966 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -400,6 +400,16 @@ rustfmt:
- cargo fmt --version
- cargo fmt -- --color=always --check
+gstwebrtc-api lint:
+ image: node:lts
+ stage: "lint"
+ rules:
+ - when: 'always'
+ script:
+ - cd net/webrtc/gstwebrtc-api
+ - npm install
+ - npm run check
+
check commits:
extends: .img-stable
stage: "lint"