From a56e933e801a2667bce234a24c6f16c42995e5ea Mon Sep 17 00:00:00 2001 From: Malte Meiboom Date: Wed, 17 Dec 2025 12:26:09 +0100 Subject: [PATCH] Add end-to-end test to CI - use new MTA image and an initial test --- .gitlab-ci.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8b5b3b7..09d43fe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,12 +1,6 @@ stages: - - build - test - -build-job: - stage: build - image: localhost:5000/huskbuilder:latest - script: - - cargo build + - e2e test-job: stage: test @@ -14,3 +8,10 @@ test-job: script: - cargo test +e2e-job: + stage: e2e + image: localhost:5000/mta:latest + script: + - bash /usr/bin/prepare.sh $CI_COMMIT_BRANCH + - bash /usr/bin/test_1.sh +