From a8234a67d2b6123b61f5b4edc25fc023f474e134 Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Wed, 21 Aug 2024 17:12:23 +0300 Subject: [PATCH] ci: Use gstreamer runners for jobs that recursively clone submodules Seems like the placeholder runner is having issues with git-lfs atm. ``` Could not pull Errors logged to '/builds/alatiera/gstreamer-rs/.git/modules/gir-files/lfs/logs/20240820T212811.645856902.log'. Use `git lfs logs last` to view the log. fatal: run_command returned non-zero status for gir-files ``` Part-of: --- .gitlab-ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3f81b2122..e9ca92797 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -380,7 +380,8 @@ gir-checks: GIT_SUBMODULE_STRATEGY: recursive extends: .img-stable stage: 'extras' - tags: [ 'placeholder-job' ] + tags: + - "gstreamer" needs: - job: 'build-stable' artifacts: false @@ -437,6 +438,8 @@ doc-stripping: variables: GIT_SUBMODULE_STRATEGY: recursive extends: .img-nightly + tags: + - "gstreamer" stage: 'extras' needs: - job: 'build-nightly' @@ -451,6 +454,8 @@ regen-check: variables: GIT_SUBMODULE_STRATEGY: recursive extends: .img-nightly + tags: + - "gstreamer" stage: 'extras' needs: - job: 'build-nightly' @@ -465,6 +470,8 @@ docs: GIT_SUBMODULE_STRATEGY: recursive extends: .img-nightly stage: 'extras' + tags: + - "gstreamer" needs: - job: 'build-nightly' artifacts: false