diff options
author | Guido Günther <agx@sigxcpu.org> | 2025-04-12 09:36:37 +0200 |
---|---|---|
committer | Dan Williams <dan@ioncontrol.co> | 2025-04-13 05:01:32 +0000 |
commit | 3504a438c2929724634c9a6ec7d1a3f6ede78775 (patch) | |
tree | 3c43c5c12905f304f7668b02ffce4992de7ce8b9 /.gitlab-ci.yml | |
parent | b9e9a71dc35bfd535e545cdf4dcc4a53f02ad5fb (diff) |
ci: Move variables to common-variables
This makes it a bit more obvious where the vars are available.
Signed-off-by: Guido Günther <agx@sigxcpu.org>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ca4c1ef6..5627967b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,6 +24,9 @@ stages: LIBQMI_BRANCH: 'main' LIBQRTR_BRANCH: 'main' LIBMBIM_BRANCH: 'main' + BUILD_MBIM: true + BUILD_QMI: true + BUILD_QRTR: true build container: extends: @@ -36,11 +39,6 @@ build container: - tags - schedules -before_script: - - export BUILD_MBIM=true - - export BUILD_QMI=true - - export BUILD_QRTR=true - .prepare_deps: &prepare_deps - > if [ "$BUILD_MBIM" == "true" ]; then |