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:
authorJordan Petridis <jordan@centricular.com>2022-09-10 11:21:37 +0300
committerJordan Petridis <jordan@centricular.com>2022-09-10 14:29:23 +0300
commit165f3a788bb08eabb30fc5a011dc14fd651b0096 (patch)
treeb40650a5981fa971dcc032c4b202d3ac078bd845 /.gitlab-ci.yml
parentf966b3a57332b146e79a9b374283409a0fbfc671 (diff)
ci/windows: Build all the crates at once
In gst-rs we build each crate on its own, since not all crates share the same features and some conflict with each other. However currently, that isn't the case in plugins-rs and instead we can be building all the crates with the same flags and simplify the the script. Close #241
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e3246dcd9..299bb86df 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -268,12 +268,12 @@ gst-build:
- '2022'
parallel:
matrix:
- - FEATURES:
+ - CI_CARGO_FEATURES:
- "--no-default-features"
- "--all-features"
- ""
script:
- - echo $env:FEATURES
+ - echo $env:CI_CARGO_FEATURES
# Set the code page to UTF-8
- chcp 65001