From ede096fad28cd2c7da5e7b471c9c7cc2edc8bf3f Mon Sep 17 00:00:00 2001 From: Pieter Donker <donker@astron.nl> Date: Mon, 15 May 2023 12:33:10 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8667e983e5..7bd76865ab 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -115,6 +115,7 @@ sim-compile: tags: - fpga stage: simulation + allow_failure: true script: - echo "Compiling for simulation" - mkdir build @@ -127,6 +128,7 @@ sim-run: tags: - fpga stage: simulation + allow_failure: true script: - echo "Running simulations" # - test -f "build/info.txt" # This fails despite having artifact (see @@ -141,6 +143,7 @@ synth-compile: tags: - fpga stage: synthesis + allow_failure: true script: - echo "Compiling for synthesis" @@ -148,6 +151,7 @@ synth-check-fmax: tags: - fpga stage: synthesis + allow_failure: true script: - echo "Checking achieved fMax" @@ -155,6 +159,7 @@ synth-check-programming-files: tags: - fpga stage: synthesis + allow_failure: true script: - echo "Checking if programming files have been generated" @@ -165,6 +170,7 @@ synth-check-programming-files: trigger-opc-ua-test: stage: hardware + allow_failure: true variables: HDL_BRANCH: '$CI_COMMIT_BRANCH' only: -- GitLab