From ed8259a7858f37369c4aa0c257209fc6858882ac Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks <krisjanis.rijnieks@gmail.com> Date: Sun, 23 Feb 2025 22:20:04 +0200 Subject: [PATCH] Run all thests always, regardless if one fails or not --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4623d9c..c6401ac 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,6 +11,7 @@ stages: test_inventory: stage: stage_test_inventory + when: always script: - echo "Do we have all parts in inventory covered?" - ./tests/inventory.sh ./fab.kicad_sym ./tests/whitelist.txt @@ -18,10 +19,12 @@ test_inventory: test_footprints: stage: stage_test_footprints + when: always script: - echo "Do we have footprints for all symbols?" test_3dmodels: stage: stage_test_3dmodels + when: always script: - echo "Do we have 3D models for all footprints?" -- GitLab