From 359efac9a56be1a517ed6d96a0da17b67445daff Mon Sep 17 00:00:00 2001 From: librelois <elois@ifee.fr> Date: Tue, 30 Oct 2018 17:25:33 +0100 Subject: [PATCH] [ci] upgrade rust to 1.30 & arm tests optinal in no-dev branch --- .gitlab-ci.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ada7a6f7..410ccbe3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ variables: CARGO_HOME: $CI_PROJECT_DIR/cargo .rust_stable_lin64: &rust_stable_lin64 - image: registry.duniter.org/docker/duniter-rs-ci:v0.0.6 + image: registry.duniter.org/docker/duniter-rs-ci:0.0.7 tags: - redshift-rs-stable before_script: @@ -70,11 +70,23 @@ tests:linux64:stable: - cargo build --features strict - cargo test --all -tests:armv7:stable: +tests:arm-v7-:stable: <<: *rust_stable_armv7 stage: tests script: - cargo test --all --target=armv7-unknown-linux-gnueabihf + allow_failure: true + when: manual + except: + - dev + +tests:arm-v7:stable: + <<: *rust_stable_armv7 + stage: tests + script: + - cargo test --all --target=armv7-unknown-linux-gnueabihf + only: + - dev tests:win64:stable: <<: *rust_stable_win64 -- GitLab