From 6e687acf457add625d41c18846df0c6dfa4cc053 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20L=C3=BCbke?= Date: Fri, 11 Aug 2023 10:19:02 +0200 Subject: [PATCH] ci: always run build and test stage on new commits --- .gitlab-ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 35eabee89..cb7391eb7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -34,8 +34,6 @@ build-poet: # This job runs in the build stage, which runs first. - mkdir build && cd build - cmake -DPOET_ENABLE_TESTING=ON .. - make -j$(nproc) - rules: - - if: $CI_PIPELINE_SOURCE == 'merge_request_event' artifacts: paths: - build @@ -47,8 +45,6 @@ test-poet: script: - cd build - make -j$(nproc) check - rules: - - if: $CI_PIPELINE_SOURCE == 'merge_request_event' archive-sources: # This job runs in the build stage, which runs first. image: python:3