From d0acdaf0d595ac20548730330478a8d1b1271c54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Sun, 5 Apr 2020 16:02:47 +0200 Subject: [PATCH] CI: Add armv7h test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 42aea7c..360621d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,6 +13,11 @@ variables: image: rustlang/rust:nightly allow_failure: true # It's not often, but it happens nightly breaks, surprisingly. +.armv7h: + image: arm32v7/rust:slim + tags: + - armv7h + .test: stage: test script: @@ -35,3 +40,9 @@ nightly-test: extends: - .test - .nightly + +stable-armv7h-test: + extends: + - .test + - .stable + - .armv7h