From 3b8ad597c9d62ac9db1d03f3e7c7ba2c832a361e Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 14 Jul 2021 10:38:38 +0100 Subject: [PATCH] CI: don't execute a job we know fails The n1sdp/armgcc job fails due to a GCC switch conflict in gcc-runtime: cc1: error: switch '-mcpu=armv8.2-a' conflicts with '-march=armv8-a' switch Currently we run this job anyway, and ignore the failure. But that's 10 minutes of build time wasted every run when we know it fails. Instead, mark the job as manually executed until we have fixed the underlying issue. Change-Id: I3ee48ce4d1a4f2dacc30800ff18c72fcce4e9afb Signed-off-by: Ross Burton --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 641a5f1e..c94b0d09 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -132,9 +132,12 @@ musca-s1: n1sdp: extends: .build +# This job currently fails when building gcc-runtime: +# cc1: error: switch '-mcpu=armv8.2-a' conflicts with '-march=armv8-a' switch [-Werror] +# Mark as manual so it doesn't get executed automatically n1sdp/armgcc: extends: .build - allow_failure: true + when: manual qemuarm: extends: