[education/kstars] /: Fix snapcraft job name in .gitlab-ci.yml
Jasem Mutlaq <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 770ccc3f91e6f35d9637ee1fbbcd3ef68d7d8b1a by Jasem Mutlaq.
Committed on 04/08/2026 at 03:31.
Pushed by mutlaqja into branch 'master'.
Fix snapcraft job name in .gitlab-ci.yml
The override job name "snapcraft" didn't match the actual jobs defined
by the snap-snapcraft-lxd.yml CI template (snap_snapcraft_lxd and
snap_snapcraft_lxd_arm64), so it created a new job with no script or
trigger, which GitLab CI rejects. Rename to the correct job names and
drop the rules override so the template's own gating rules apply.
M +5 -3 .gitlab-ci.yml
https://invent.kde.org/education/kstars/-/commit/770ccc3f91e6f35d9637ee1fbbcd3ef68d7d8b1a
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8c89772b79..6bd79dda1f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -246,8 +246,10 @@ build-and-test-stable:
junit: ./junit_result.stable.xml
# Gate snapcraft on a successful linux build
-snapcraft:
+snap_snapcraft_lxd:
+ needs:
+ - suse_tumbleweed_qt611
+
+snap_snapcraft_lxd_arm64:
needs:
- suse_tumbleweed_qt611
- rules:
- - !reference [.craft-recipes, rules]