From 351b17312000c64bae75514508a724506653807f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Pablo=20Correa=20G=C3=B3mez?= <ablocorrea@hotmail.com>
Date: Mon, 18 Nov 2024 17:11:43 +0100
Subject: [PATCH] ci: allow mypyc job to fail

mypyc is not yet completely stable, and might fail for things that are
correct Python (see
https://gitlab.postmarketos.org/postmarketOS/mrhlpr/-/merge_requests/61#note_456440),
so don't make it a requirement that it passes for merging
---
 .gitlab-ci.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 364217d..c8326e2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -18,6 +18,7 @@ native-build:
     - adduser -D build
   script:
     - .ci/native-build.sh
+  allow_failure: true
 
 docs:
   stage: test
-- 
GitLab