aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-04-03 22:18:41 -0600
committerMelody Horn <melody@boringcactus.com>2021-04-03 22:18:41 -0600
commit93e6ecd57dcfebc25b01cc2568ffb8f88782aec0 (patch)
treefaead57fcbc267d2d3e72cdbb5485712269f6267 /.gitlab-ci.yml
parenteec876fe50ff9b6333109fe717cd50ba2d4781c7 (diff)
downloadmakers-93e6ecd57dcfebc25b01cc2568ffb8f88782aec0.tar.gz
makers-93e6ecd57dcfebc25b01cc2568ffb8f88782aec0.zip
don't fail the build when uutils tests fail
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0d4970f..9423e02 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -33,4 +33,6 @@ full-test-uutils:
- git clone https://github.com/uutils/coreutils.git ~/uutils-coreutils
- cd ~/uutils-coreutils
- apt update && apt install -y python3-sphinx
- - makers build test busytest
+ - makers build
+ - makers test || echo "test failed but that's not the point"
+ - makers busytest || echo "busytest failed but that's not the point"