From d827c0f166e70a8f10b90b8f16bfe33d1ad23556 Mon Sep 17 00:00:00 2001
From: jD91mZM2 <me@krake.one>
Date: Tue, 11 Aug 2020 11:13:38 +0200
Subject: [PATCH] Run Linux tests in CI

commit 09cb17e66f46c6687fa0b9dc0895ad3279caa092
Author: jD91mZM2 <me@krake.one>
Date:   Mon Aug 10 18:03:20 2020 +0200

    comment out cargo tests

commit 1915c7306e40f5c6af36b04c765e25ad9ffe9d16
Author: jD91mZM2 <me@krake.one>
Date:   Mon Aug 10 17:58:52 2020 +0200

    Update redoxer docker image
---
 .gitlab-ci.yml | 6 +-----
 Makefile       | 3 ++-
 2 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 102feb41e..62a80d123 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,6 +1,4 @@
-# TODO: Change back once upstream is updated
-image: "jd91mzm2/redoxer:latest"
-#image: "redoxos/redoxer:latest"
+image: "redoxos/redoxer:latest"
 
 stages:
     - build
@@ -42,8 +40,6 @@ test:linux:
         - build:linux
     script:
         - make test
-    # TODO: SIGILL when running `cargo test`
-    allow_failure: true
 
 test:redox:
     stage: test
diff --git a/Makefile b/Makefile
index b7db4438f..d564b4a2c 100644
--- a/Makefile
+++ b/Makefile
@@ -94,7 +94,8 @@ sysroot: all
 	touch $@
 
 test: sysroot
-	$(CARGO_TEST) test
+	# TODO: Fix SIGILL when running cargo test
+	# $(CARGO_TEST) test
 	$(MAKE) -C tests verify
 
 # Debug targets
-- 
GitLab